pub struct Ast {
pub grammar: AstGrammar,
pub alias: Option<String>,
pub token: Option<AstToken>,
pub children: Vec<Ast>,
}
Fields§
§grammar: AstGrammar
§alias: Option<String>
§token: Option<AstToken>
§children: Vec<Ast>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ast
impl RefUnwindSafe for Ast
impl Send for Ast
impl Sync for Ast
impl Unpin for Ast
impl UnwindSafe for Ast
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