pub type Element = Element<Variable>;
Aliased Type§
enum Element {
Push(Statement<Variable>),
Concat(Statement<Variable>),
Literal(String),
Inner(Vec<Element<Variable>>),
Nested(Box<Element<Variable>>),
Spacing,
}
pub type Element = Element<Variable>;
enum Element {
Push(Statement<Variable>),
Concat(Statement<Variable>),
Literal(String),
Inner(Vec<Element<Variable>>),
Nested(Box<Element<Variable>>),
Spacing,
}