pub enum MultiBindCollector<'a> {
Postgresql(<<PgConnection as Connection>::Backend as Backend>::BindCollector<'a>),
Sqlite(<<SqliteConnection as Connection>::Backend as Backend>::BindCollector<'a>),
}
Variants§
Postgresql(<<PgConnection as Connection>::Backend as Backend>::BindCollector<'a>)
Sqlite(<<SqliteConnection as Connection>::Backend as Backend>::BindCollector<'a>)
Implementations§
source§impl<'a> MultiBindCollector<'a>
impl<'a> MultiBindCollector<'a>
pub(super) fn postgresql( &mut self, ) -> &mut <<PgConnection as Connection>::Backend as Backend>::BindCollector<'a>
pub(super) fn sqlite( &mut self, ) -> &mut <<SqliteConnection as Connection>::Backend as Backend>::BindCollector<'a>
Trait Implementations§
source§impl<'a> BindCollector<'a, MultiBackend> for MultiBindCollector<'a>
impl<'a> BindCollector<'a, MultiBackend> for MultiBindCollector<'a>
Auto Trait Implementations§
impl<'a> Freeze for MultiBindCollector<'a>
impl<'a> RefUnwindSafe for MultiBindCollector<'a>
impl<'a> Send for MultiBindCollector<'a>
impl<'a> Sync for MultiBindCollector<'a>
impl<'a> Unpin for MultiBindCollector<'a>
impl<'a> UnwindSafe for MultiBindCollector<'a>
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