pub struct TreePathExt(pub Vec<usize>);Expand description
A path in a tree, represented as a sequence of child indices.
Tuple Fields§
§0: Vec<usize>Implementations§
Trait Implementations§
Source§impl Clone for TreePathExt
impl Clone for TreePathExt
Source§fn clone(&self) -> TreePathExt
fn clone(&self) -> TreePathExt
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 Debug for TreePathExt
impl Debug for TreePathExt
Source§impl PartialEq for TreePathExt
impl PartialEq for TreePathExt
impl Eq for TreePathExt
impl StructuralPartialEq for TreePathExt
Auto Trait Implementations§
impl Freeze for TreePathExt
impl RefUnwindSafe for TreePathExt
impl Send for TreePathExt
impl Sync for TreePathExt
impl Unpin for TreePathExt
impl UnsafeUnpin for TreePathExt
impl UnwindSafe for TreePathExt
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