pub struct TreePathMap<U>(/* private fields */)
where
U: Eq + Hash;
Expand description
This is a mapping of items in Tree
to their Path
s. A single item in the Tree
can have
multiple Path
s to it if it is in the Tree
multiple times.
Implementations§
Trait Implementations§
Source§impl<U> Clone for TreePathMap<U>
impl<U> Clone for TreePathMap<U>
Source§fn clone(&self) -> TreePathMap<U>
fn clone(&self) -> TreePathMap<U>
Returns a duplicate 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 moreSource§impl<U> Debug for TreePathMap<U>
impl<U> Debug for TreePathMap<U>
Source§impl<U> Default for TreePathMap<U>
impl<U> Default for TreePathMap<U>
Source§fn default() -> TreePathMap<U>
fn default() -> TreePathMap<U>
Returns the “default value” for a type. Read more
Source§impl<U> PartialEq for TreePathMap<U>
impl<U> PartialEq for TreePathMap<U>
impl<U> Eq for TreePathMap<U>
impl<U> StructuralPartialEq for TreePathMap<U>
Auto Trait Implementations§
impl<U> Freeze for TreePathMap<U>
impl<U> RefUnwindSafe for TreePathMap<U>where
U: RefUnwindSafe,
impl<U> Send for TreePathMap<U>where
U: Send,
impl<U> Sync for TreePathMap<U>where
U: Sync,
impl<U> Unpin for TreePathMap<U>where
U: Unpin,
impl<U> UnwindSafe for TreePathMap<U>where
U: 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