pub struct TreeNodeParentChildPathConflict<T>where
T: PathTreeTypes,{
pub parent_node: Arc<TreeNode<T>>,
pub child_path_segment: <T as PathTreeTypes>::PathSegment,
}
Expand description
A conflicting path from a parent to a child node.
Fields§
§parent_node: Arc<TreeNode<T>>
§child_path_segment: <T as PathTreeTypes>::PathSegment
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for TreeNodeParentChildPathConflict<T>
impl<T> RefUnwindSafe for TreeNodeParentChildPathConflict<T>where
<T as PathTreeTypes>::InnerValue: RefUnwindSafe,
<T as PathTreeTypes>::LeafValue: RefUnwindSafe,
<T as PathTreeTypes>::PathSegment: RefUnwindSafe,
impl<T> Send for TreeNodeParentChildPathConflict<T>where
<T as PathTreeTypes>::InnerValue: Sync + Send,
<T as PathTreeTypes>::LeafValue: Sync + Send,
<T as PathTreeTypes>::PathSegment: Sync + Send,
impl<T> Sync for TreeNodeParentChildPathConflict<T>where
<T as PathTreeTypes>::InnerValue: Sync + Send,
<T as PathTreeTypes>::LeafValue: Sync + Send,
<T as PathTreeTypes>::PathSegment: Sync + Send,
impl<T> Unpin for TreeNodeParentChildPathConflict<T>
impl<T> UnwindSafe for TreeNodeParentChildPathConflict<T>where
<T as PathTreeTypes>::InnerValue: RefUnwindSafe,
<T as PathTreeTypes>::LeafValue: RefUnwindSafe,
<T as PathTreeTypes>::PathSegment: UnwindSafe + 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