pub trait HasCreateTable: AstNode {
// Provided methods
fn table_name(&self) -> Option<TableName> { ... }
fn table_arg_list(&self) -> Option<TableArgList> { ... }
fn persistence(&self) -> Option<Persistence> { ... }
fn inherits(&self) -> Option<Inherits> { ... }
}Provided Methods§
fn table_name(&self) -> Option<TableName>
fn table_arg_list(&self) -> Option<TableArgList>
fn persistence(&self) -> Option<Persistence>
fn inherits(&self) -> Option<Inherits>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".