pub struct AstNode {
pub type: &'static str,
pub value: String,
pub span: Span,
pub children: Vec<AstNode>,
}
Expand description
Information on an AST
node.
Fields§
§type: &'static str
The type of node
value: String
The code associated to a node
span: Span
The start and end positions of a node in a code
children: Vec<AstNode>
The children of a node
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AstNode
impl RefUnwindSafe for AstNode
impl Send for AstNode
impl Sync for AstNode
impl Unpin for AstNode
impl UnwindSafe for AstNode
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