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