Struct im_pathtree::RemovedSubTree
source · pub struct RemovedSubTree<T>where
T: PathTreeTypes,{
pub parent_node: Arc<TreeNode<T>>,
pub removed_child_node_ids: Vec<NodeId>,
}
Expand description
Return type when removing a node from the tree.
Fields§
§parent_node: Arc<TreeNode<T>>
§removed_child_node_ids: Vec<NodeId>
Trait Implementations§
source§impl<T> Clone for RemovedSubTree<T>where
T: PathTreeTypes + Clone,
impl<T> Clone for RemovedSubTree<T>where T: PathTreeTypes + Clone,
source§fn clone(&self) -> RemovedSubTree<T>
fn clone(&self) -> RemovedSubTree<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<T> RefUnwindSafe for RemovedSubTree<T>where <T as PathTreeTypes>::InnerValue: RefUnwindSafe, <T as PathTreeTypes>::LeafValue: RefUnwindSafe, <T as PathTreeTypes>::PathSegment: RefUnwindSafe,
impl<T> Send for RemovedSubTree<T>where <T as PathTreeTypes>::InnerValue: Send + Sync, <T as PathTreeTypes>::LeafValue: Send + Sync, <T as PathTreeTypes>::PathSegment: Send + Sync,
impl<T> Sync for RemovedSubTree<T>where <T as PathTreeTypes>::InnerValue: Send + Sync, <T as PathTreeTypes>::LeafValue: Send + Sync, <T as PathTreeTypes>::PathSegment: Send + Sync,
impl<T> Unpin for RemovedSubTree<T>
impl<T> UnwindSafe for RemovedSubTree<T>where <T as PathTreeTypes>::InnerValue: RefUnwindSafe, <T as PathTreeTypes>::LeafValue: RefUnwindSafe, <T as PathTreeTypes>::PathSegment: RefUnwindSafe,
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