Enum fork_tree::FinalizationResult [−][src]
pub enum FinalizationResult<V> { Changed(Option<V>), Unchanged, }
Expand description
Result of finalizing a node (that could be a part of the tree or not).
Variants
Changed(Option<V>)
The tree has changed, optionally return the value associated with the finalized node.
The tree has not changed.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<V> RefUnwindSafe for FinalizationResult<V> where
V: RefUnwindSafe,
impl<V> Send for FinalizationResult<V> where
V: Send,
impl<V> Sync for FinalizationResult<V> where
V: Sync,
impl<V> Unpin for FinalizationResult<V> where
V: Unpin,
impl<V> UnwindSafe for FinalizationResult<V> where
V: UnwindSafe,