pub struct SqlInsert {
pub table: SqlIdent,
pub fields: Vec<SqlIdent>,
pub values: SqlValues,
}Expand description
INSERT INTO table cols VALUES literals
Fields§
§table: SqlIdent§fields: Vec<SqlIdent>§values: SqlValuesAuto Trait Implementations§
impl Freeze for SqlInsert
impl RefUnwindSafe for SqlInsert
impl Send for SqlInsert
impl Sync for SqlInsert
impl Unpin for SqlInsert
impl UnwindSafe for SqlInsert
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