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<FilterAction> for FilterAction
impl PartialEq<FilterAction> 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 ==
.