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