pub struct Insert {
pub table: ObjectName,
pub columns: Vec<Ident>,
pub source: Box<Query>,
}Expand description
INSERT statement.
Fields§
§table: ObjectNameTABLE
columns: Vec<Ident>COLUMNS
source: Box<Query>A SQL query that specifies what to insert
Trait Implementations§
Source§impl Ord for Insert
impl Ord for Insert
Source§impl PartialOrd for Insert
impl PartialOrd for Insert
impl Eq for Insert
impl StructuralPartialEq for Insert
Auto Trait Implementations§
impl Freeze for Insert
impl RefUnwindSafe for Insert
impl Send for Insert
impl Sync for Insert
impl Unpin for Insert
impl UnsafeUnpin for Insert
impl UnwindSafe for Insert
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