pub struct TreeNodeParentChildPathConflict<T>where
    T: PathTreeTypes,{
    pub parent_node: Arc<TreeNode<T>>,
    pub child_path_segment: T::PathSegment,
}Expand description
A conflicting path from a parent to a child node.
Fields§
§parent_node: Arc<TreeNode<T>>§child_path_segment: T::PathSegmentTrait Implementations§
source§impl<T> Debug for TreeNodeParentChildPathConflict<T>
 
impl<T> Debug for TreeNodeParentChildPathConflict<T>
Auto Trait Implementations§
impl<T> Freeze for TreeNodeParentChildPathConflict<T>
impl<T> RefUnwindSafe for TreeNodeParentChildPathConflict<T>where
    <T as PathTreeTypes>::PathSegment: RefUnwindSafe,
    <T as PathTreeTypes>::NodeId: RefUnwindSafe,
    <T as PathTreeTypes>::InnerValue: RefUnwindSafe,
    <T as PathTreeTypes>::LeafValue: RefUnwindSafe,
impl<T> !Send for TreeNodeParentChildPathConflict<T>
impl<T> !Sync for TreeNodeParentChildPathConflict<T>
impl<T> Unpin for TreeNodeParentChildPathConflict<T>
impl<T> UnwindSafe for TreeNodeParentChildPathConflict<T>where
    <T as PathTreeTypes>::PathSegment: UnwindSafe + RefUnwindSafe,
    <T as PathTreeTypes>::NodeId: RefUnwindSafe,
    <T as PathTreeTypes>::InnerValue: RefUnwindSafe,
    <T as PathTreeTypes>::LeafValue: 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
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more