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.