pub struct RawInsertCommand {
pub table_name: String,
pub provided_columns: Option<Vec<String>>,
pub provided_values: Vec<ParseExpression>,
}Fields§
§table_name: String§provided_columns: Option<Vec<String>>§provided_values: Vec<ParseExpression>Trait Implementations§
Source§impl Clone for RawInsertCommand
impl Clone for RawInsertCommand
Source§fn clone(&self) -> RawInsertCommand
fn clone(&self) -> RawInsertCommand
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 moreSource§impl Debug for RawInsertCommand
impl Debug for RawInsertCommand
Source§impl PartialEq for RawInsertCommand
impl PartialEq for RawInsertCommand
impl StructuralPartialEq for RawInsertCommand
Auto Trait Implementations§
impl Freeze for RawInsertCommand
impl RefUnwindSafe for RawInsertCommand
impl Send for RawInsertCommand
impl Sync for RawInsertCommand
impl Unpin for RawInsertCommand
impl UnwindSafe for RawInsertCommand
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