pub struct AstNode {
pub content: AstNodeContent,
pub span: Span,
}
Expand description
Fields
content: AstNodeContent
The content of this ast node, which could be any control flow structure or other basic organizational component.
span: Span
The span::Span representing this entire AstNode.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AstNode
impl UnwindSafe for AstNode
Blanket Implementations
Mutably borrows from an owned value. Read more