pub struct Tree<D: Display>(/* private fields */);
Expand description
a simple recursive type which is able to render its components in a tree-like format
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<D> Freeze for Tree<D>where
D: Freeze,
impl<D> RefUnwindSafe for Tree<D>where
D: RefUnwindSafe,
impl<D> Send for Tree<D>where
D: Send,
impl<D> Sync for Tree<D>where
D: Sync,
impl<D> Unpin for Tree<D>where
D: Unpin,
impl<D> UnwindSafe for Tree<D>where
D: 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