Trait StatementBuilder

pub trait StatementBuilder {
    // Required method
    fn build(&self, db_backend: &DatabaseBackend) -> Statement;
}
Expand description

Any type that can build a Statement

Required Methods§

fn build(&self, db_backend: &DatabaseBackend) -> Statement

Method to call in order to build a Statement

Implementors§