pub struct BlockTree<'tree> {
pub block: Block<'tree>,
pub children: Vec<BlockTree<'tree>>,
}
Fields§
§block: Block<'tree>
§children: Vec<BlockTree<'tree>>
Trait Implementations§
impl<'tree> Eq for BlockTree<'tree>
impl<'tree> StructuralPartialEq for BlockTree<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for BlockTree<'tree>
impl<'tree> RefUnwindSafe for BlockTree<'tree>
impl<'tree> !Send for BlockTree<'tree>
impl<'tree> !Sync for BlockTree<'tree>
impl<'tree> Unpin for BlockTree<'tree>
impl<'tree> UnwindSafe for BlockTree<'tree>
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