pub struct AstRoot<'a> {
pub children: Vec<AstNode<'a>>,
pub location: SourceLocation,
}
Fields§
§children: Vec<AstNode<'a>>
§location: SourceLocation
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AstRoot<'a>
impl<'a> RefUnwindSafe for AstRoot<'a>
impl<'a> Send for AstRoot<'a>
impl<'a> Sync for AstRoot<'a>
impl<'a> Unpin for AstRoot<'a>
impl<'a> UnwindSafe for AstRoot<'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