pub enum MultiQueryBuilder {
Postgresql(<<PgConnection as Connection>::Backend as Backend>::QueryBuilder),
Sqlite(<<SqliteConnection as Connection>::Backend as Backend>::QueryBuilder),
}
Variants§
Postgresql(<<PgConnection as Connection>::Backend as Backend>::QueryBuilder)
Sqlite(<<SqliteConnection as Connection>::Backend as Backend>::QueryBuilder)
Implementations§
source§impl MultiQueryBuilder
impl MultiQueryBuilder
pub(super) fn postgresql( &mut self, ) -> &mut <<PgConnection as Connection>::Backend as Backend>::QueryBuilder
pub(super) fn sqlite( &mut self, ) -> &mut <<SqliteConnection as Connection>::Backend as Backend>::QueryBuilder
Trait Implementations§
source§impl QueryBuilder<MultiBackend> for MultiQueryBuilder
impl QueryBuilder<MultiBackend> for MultiQueryBuilder
source§fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>
fn push_identifier(&mut self, identifier: &str) -> QueryResult<()>
Quote
identifier
, and add it to the end of the query being
constructed.source§fn push_bind_param(&mut self)
fn push_bind_param(&mut self)
Add a placeholder for a bind parameter to the end of the query being
constructed.
§fn push_bind_param_value_only(&mut self)
fn push_bind_param_value_only(&mut self)
Increases the internal counter for bind parameters without adding the
bind parameter itself to the query
Auto Trait Implementations§
impl Freeze for MultiQueryBuilder
impl RefUnwindSafe for MultiQueryBuilder
impl Send for MultiQueryBuilder
impl Sync for MultiQueryBuilder
impl Unpin for MultiQueryBuilder
impl UnwindSafe for MultiQueryBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more