pub struct ListTree<'a> {
pub root: Vec<ListItem<'a>>,
}
Expand description
The struct to represent a list tree.
Fields§
§root: Vec<ListItem<'a>>
Trait Implementations§
impl<'a> Eq for ListTree<'a>
impl<'a> StructuralPartialEq for ListTree<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListTree<'a>
impl<'a> RefUnwindSafe for ListTree<'a>
impl<'a> Send for ListTree<'a>
impl<'a> Sync for ListTree<'a>
impl<'a> Unpin for ListTree<'a>
impl<'a> UnwindSafe for ListTree<'a>
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