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

Constraints for building a Statement

Required Methods

Method to call in order to build a Statement

Implementations on Foreign Types

Implementors