pub struct InsertIntoQueryBuilder<Values, Update> { /* private fields */ }Implementations§
Source§impl InsertIntoQueryBuilder<NA, NA>
impl InsertIntoQueryBuilder<NA, NA>
pub fn values<Values>( self, values: Values, ) -> InsertIntoQueryBuilder<Values, NA>
Source§impl<V, U> InsertIntoQueryBuilder<V, U>
impl<V, U> InsertIntoQueryBuilder<V, U>
pub fn get_values(&self) -> V
pub fn get_update(&self) -> bool
pub fn build<D: Driver>(&self, driver: &D) -> String
pub fn build_into<D: Driver>(&self, driver: &D, out: &mut DynQuery)
Auto Trait Implementations§
impl<Values, Update> Freeze for InsertIntoQueryBuilder<Values, Update>where
Values: Freeze,
impl<Values, Update> RefUnwindSafe for InsertIntoQueryBuilder<Values, Update>where
Values: RefUnwindSafe,
Update: RefUnwindSafe,
impl<Values, Update> Send for InsertIntoQueryBuilder<Values, Update>
impl<Values, Update> Sync for InsertIntoQueryBuilder<Values, Update>
impl<Values, Update> Unpin for InsertIntoQueryBuilder<Values, Update>
impl<Values, Update> UnsafeUnpin for InsertIntoQueryBuilder<Values, Update>where
Values: UnsafeUnpin,
impl<Values, Update> UnwindSafe for InsertIntoQueryBuilder<Values, Update>where
Values: UnwindSafe,
Update: UnwindSafe,
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