Struct nom_sql::InsertStatement [−][src]
pub struct InsertStatement {
pub table: Table,
pub fields: Option<Vec<Column>>,
pub data: Vec<Vec<Literal>>,
pub ignore: bool,
pub on_duplicate: Option<Vec<(Column, FieldValueExpression)>>,
}Fields
table: Table
fields: Option<Vec<Column>>
data: Vec<Vec<Literal>>
ignore: bool
on_duplicate: Option<Vec<(Column, FieldValueExpression)>>
Trait Implementations
impl Clone for InsertStatement[src]
impl Clone for InsertStatementfn clone(&self) -> InsertStatement[src]
fn clone(&self) -> InsertStatementReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for InsertStatement[src]
impl Debug for InsertStatementfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for InsertStatement[src]
impl Default for InsertStatementfn default() -> InsertStatement[src]
fn default() -> InsertStatementReturns the "default value" for a type. Read more
impl Eq for InsertStatement[src]
impl Eq for InsertStatementimpl Hash for InsertStatement[src]
impl Hash for InsertStatementfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl PartialEq for InsertStatement[src]
impl PartialEq for InsertStatementfn eq(&self, other: &InsertStatement) -> bool[src]
fn eq(&self, other: &InsertStatement) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &InsertStatement) -> bool[src]
fn ne(&self, other: &InsertStatement) -> boolThis method tests for !=.
impl Display for InsertStatement[src]
impl Display for InsertStatementAuto Trait Implementations
impl Send for InsertStatement
impl Send for InsertStatementimpl Sync for InsertStatement
impl Sync for InsertStatement