Skip to main content

TableStatement

Trait TableStatement 

Source
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§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§