pub struct TreesRef<V, B> { /* private fields */ }Expand description
A reference to a single node within a Trees container.
Holds a copy of the borrowed values and bounds containers,
plus the node’s index and child range. Navigation to children
constructs new TreesRef values.
Implementations§
Trait Implementations§
impl<V: Copy, B: Copy> Copy for TreesRef<V, B>
Auto Trait Implementations§
impl<V, B> Freeze for TreesRef<V, B>
impl<V, B> RefUnwindSafe for TreesRef<V, B>where
V: RefUnwindSafe,
B: RefUnwindSafe,
impl<V, B> Send for TreesRef<V, B>
impl<V, B> Sync for TreesRef<V, B>
impl<V, B> Unpin for TreesRef<V, B>
impl<V, B> UnsafeUnpin for TreesRef<V, B>where
V: UnsafeUnpin,
B: UnsafeUnpin,
impl<V, B> UnwindSafe for TreesRef<V, B>where
V: UnwindSafe,
B: 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