pub trait SqlFragment {
    // Required method
    fn create(&self) -> String;
}
Expand description

SQL statements that can be executed against a database.

Required Methods§

source

fn create(&self) -> String

Return the SQL create statement for a given SQL item.

Implementors§