pub trait TableStatement {
// Required methods
fn create_stmt(&self) -> Result<String>;
fn create_if_not_exist_stmt(&self) -> Result<String>;
fn drop_stmt(&self) -> Result<String>;
}Expand description
[Deprecated] Specify table handling SQL statement
Required Methods§
fn create_stmt(&self) -> Result<String>
fn create_if_not_exist_stmt(&self) -> Result<String>
fn drop_stmt(&self) -> Result<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".