Enum fork_tree::FilterAction
source · pub enum FilterAction {
Remove,
KeepNode,
KeepTree,
}
Expand description
Filtering action.
Variants§
Remove
Remove the node and its subtree.
KeepNode
Maintain the node.
KeepTree
Maintain the node and its subtree.
Trait Implementations§
source§impl Debug for FilterAction
impl Debug for FilterAction
source§impl PartialEq for FilterAction
impl PartialEq for FilterAction
source§fn eq(&self, other: &FilterAction) -> bool
fn eq(&self, other: &FilterAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FilterAction
Auto Trait Implementations§
impl Freeze for FilterAction
impl RefUnwindSafe for FilterAction
impl Send for FilterAction
impl Sync for FilterAction
impl Unpin for FilterAction
impl UnwindSafe for FilterAction
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