pub struct InsertPlan {
pub table: String,
pub columns: Vec<String>,
pub values: Vec<Vec<Expr>>,
pub on_conflict: Option<OnConflictPlan>,
}Fields§
§table: String§columns: Vec<String>§values: Vec<Vec<Expr>>§on_conflict: Option<OnConflictPlan>Trait Implementations§
Source§impl Clone for InsertPlan
impl Clone for InsertPlan
Source§fn clone(&self) -> InsertPlan
fn clone(&self) -> InsertPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InsertPlan
impl RefUnwindSafe for InsertPlan
impl Send for InsertPlan
impl Sync for InsertPlan
impl Unpin for InsertPlan
impl UnsafeUnpin for InsertPlan
impl UnwindSafe for InsertPlan
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