Enum im_pathtree::NodeValue
source · pub enum NodeValue<T: PathTreeTypes> {
Inner(T::InnerValue),
Leaf(T::LeafValue),
}
Variants§
Inner(T::InnerValue)
Leaf(T::LeafValue)
Trait Implementations§
source§impl<T: Clone + PathTreeTypes> Clone for NodeValue<T>where
T::InnerValue: Clone,
T::LeafValue: Clone,
impl<T: Clone + PathTreeTypes> Clone for NodeValue<T>where T::InnerValue: Clone, T::LeafValue: Clone,
Auto Trait Implementations§
impl<T> RefUnwindSafe for NodeValue<T>where <T as PathTreeTypes>::InnerValue: RefUnwindSafe, <T as PathTreeTypes>::LeafValue: RefUnwindSafe,
impl<T> Send for NodeValue<T>where <T as PathTreeTypes>::InnerValue: Send, <T as PathTreeTypes>::LeafValue: Send,
impl<T> Sync for NodeValue<T>where <T as PathTreeTypes>::InnerValue: Sync, <T as PathTreeTypes>::LeafValue: Sync,
impl<T> Unpin for NodeValue<T>where <T as PathTreeTypes>::InnerValue: Unpin, <T as PathTreeTypes>::LeafValue: Unpin,
impl<T> UnwindSafe for NodeValue<T>where <T as PathTreeTypes>::InnerValue: UnwindSafe, <T as PathTreeTypes>::LeafValue: UnwindSafe,
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