pub struct FilterMapValueTree<V, F, O> { /* private fields */ }
Expand description
ValueTree
corresponding to FilterMap
.
Trait Implementations§
source§impl<V: Clone + ValueTree, F: Fn(V::Value) -> Option<O>, O> Clone for FilterMapValueTree<V, F, O>
impl<V: Clone + ValueTree, F: Fn(V::Value) -> Option<O>, O> Clone for FilterMapValueTree<V, F, O>
source§impl<V: Debug, F, O> Debug for FilterMapValueTree<V, F, O>
impl<V: Debug, F, O> Debug for FilterMapValueTree<V, F, O>
source§impl<V: ValueTree, F: Fn(V::Value) -> Option<O>, O: Debug> ValueTree for FilterMapValueTree<V, F, O>
impl<V: ValueTree, F: Fn(V::Value) -> Option<O>, O: Debug> ValueTree for FilterMapValueTree<V, F, O>
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<V, F, O> !Freeze for FilterMapValueTree<V, F, O>
impl<V, F, O> !RefUnwindSafe for FilterMapValueTree<V, F, O>
impl<V, F, O> Send for FilterMapValueTree<V, F, O>
impl<V, F, O> !Sync for FilterMapValueTree<V, F, O>
impl<V, F, O> Unpin for FilterMapValueTree<V, F, O>
impl<V, F, O> UnwindSafe for FilterMapValueTree<V, F, O>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)