pub struct InsertIntoQueryBuilder<E: Entity, Values, Update> { /* private fields */ }Implementations§
Source§impl<E: Entity> InsertIntoQueryBuilder<E, NA, NA>
impl<E: Entity> InsertIntoQueryBuilder<E, NA, NA>
pub fn values<'a, Values>(
self,
values: Values,
) -> InsertIntoQueryBuilder<E, Values, NA>where
E: 'a,
Values: IntoIterator<Item = &'a E>,
Source§impl<'a, E, V, U> InsertIntoQueryBuilder<E, V, U>
impl<'a, E, V, U> InsertIntoQueryBuilder<E, 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<E, Values, Update> Freeze for InsertIntoQueryBuilder<E, Values, Update>where
Values: Freeze,
impl<E, Values, Update> RefUnwindSafe for InsertIntoQueryBuilder<E, Values, Update>
impl<E, Values, Update> Send for InsertIntoQueryBuilder<E, Values, Update>
impl<E, Values, Update> Sync for InsertIntoQueryBuilder<E, Values, Update>
impl<E, Values, Update> Unpin for InsertIntoQueryBuilder<E, Values, Update>
impl<E, Values, Update> UnwindSafe for InsertIntoQueryBuilder<E, Values, Update>
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