pub struct InsertExpr {
pub target: String,
pub rows: Vec<Vec<Assignment>>,
}Fields§
§target: String§rows: Vec<Vec<Assignment>>One assignment-block per row. Always contains at least one row;
insert T { .. } yields one, insert T { .. }, { .. } yields many.
Trait Implementations§
Source§impl Clone for InsertExpr
impl Clone for InsertExpr
Source§fn clone(&self) -> InsertExpr
fn clone(&self) -> InsertExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InsertExpr
impl Debug for InsertExpr
Source§impl PartialEq for InsertExpr
impl PartialEq for InsertExpr
Source§fn eq(&self, other: &InsertExpr) -> bool
fn eq(&self, other: &InsertExpr) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InsertExpr
Auto Trait Implementations§
impl Freeze for InsertExpr
impl RefUnwindSafe for InsertExpr
impl Send for InsertExpr
impl Sync for InsertExpr
impl Unpin for InsertExpr
impl UnsafeUnpin for InsertExpr
impl UnwindSafe for InsertExpr
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