pub trait IntoAst<T> {
// Required method
fn into_ast(self) -> T;
}
Expand description
A value-to-AST conversion trait that consumes the input value.
pub trait IntoAst<T> {
// Required method
fn into_ast(self) -> T;
}
A value-to-AST conversion trait that consumes the input value.