Struct rust_code_analysis::AstNode [−][src]
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 strThe type of node
value: StringThe code associated to a node
span: SpanThe start and end positions of a node in a code
children: Vec<AstNode>The children of a node
