pub struct AstNode {
pub content: AstNodeContent,
pub span: Span,
}Expand description
Fields
content: AstNodeContentThe content of this ast node, which could be any control flow structure or other basic organizational component.
span: SpanThe 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