pub struct ArrayValueTree<T> { /* private fields */ }Trait Implementations§
Source§impl<T: ValueTree, const LANES: usize> ValueTree for ArrayValueTree<[T; LANES]>
impl<T: ValueTree, const LANES: usize> ValueTree for ArrayValueTree<[T; LANES]>
Source§type Value = [<T as ValueTree>::Value; LANES]
type Value = [<T as ValueTree>::Value; LANES]
The type of the value produced by this
ValueTree.Source§fn simplify(&mut self) -> bool
fn simplify(&mut self) -> bool
Attempts to simplify the current value. Notionally, this sets the
“high” value to the current value, and the current value to a “halfway
point” between high and low, rounding towards low. Read more
Source§fn complicate(&mut self) -> bool
fn complicate(&mut self) -> bool
Attempts to partially undo the last simplification. Notionally, this
sets the “low” value to one plus the current value, and the current
value to a “halfway point” between high and the new low, rounding
towards low. Read more
Auto Trait Implementations§
impl<T> Freeze for ArrayValueTree<T>where
T: Freeze,
impl<T> RefUnwindSafe for ArrayValueTree<T>where
T: RefUnwindSafe,
impl<T> Send for ArrayValueTree<T>where
T: Send,
impl<T> Sync for ArrayValueTree<T>where
T: Sync,
impl<T> Unpin for ArrayValueTree<T>where
T: Unpin,
impl<T> UnwindSafe for ArrayValueTree<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more