pub trait DataTypeToAst {
// Required method
fn to_ast(&self) -> AstDataType;
}
Required Methods§
sourcefn to_ast(&self) -> AstDataType
fn to_ast(&self) -> AstDataType
Convert the data type to its AST representation.
pub trait DataTypeToAst {
// Required method
fn to_ast(&self) -> AstDataType;
}
Convert the data type to its AST representation.