pub struct SelectorValueTree { /* private fields */ }
Expand description
ValueTree
corresponding to SelectorStrategy
.
Trait Implementations§
source§impl Debug for SelectorValueTree
impl Debug for SelectorValueTree
source§impl ValueTree for SelectorValueTree
impl ValueTree for SelectorValueTree
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 Freeze for SelectorValueTree
impl RefUnwindSafe for SelectorValueTree
impl Send for SelectorValueTree
impl Sync for SelectorValueTree
impl Unpin for SelectorValueTree
impl UnwindSafe for SelectorValueTree
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