Struct nom_sql::UpdateStatement [−][src]
pub struct UpdateStatement {
pub table: Table,
pub fields: Vec<(Column, FieldValueExpression)>,
pub where_clause: Option<ConditionExpression>,
}Fields
table: Table
fields: Vec<(Column, FieldValueExpression)>
where_clause: Option<ConditionExpression>
Trait Implementations
impl Clone for UpdateStatement[src]
impl Clone for UpdateStatementfn clone(&self) -> UpdateStatement[src]
fn clone(&self) -> UpdateStatementReturns 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 UpdateStatement[src]
impl Debug for UpdateStatementfn 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 UpdateStatement[src]
impl Default for UpdateStatementfn default() -> UpdateStatement[src]
fn default() -> UpdateStatementReturns the "default value" for a type. Read more
impl Eq for UpdateStatement[src]
impl Eq for UpdateStatementimpl Hash for UpdateStatement[src]
impl Hash for UpdateStatementfn 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 UpdateStatement[src]
impl PartialEq for UpdateStatementfn eq(&self, other: &UpdateStatement) -> bool[src]
fn eq(&self, other: &UpdateStatement) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &UpdateStatement) -> bool[src]
fn ne(&self, other: &UpdateStatement) -> boolThis method tests for !=.
impl Display for UpdateStatement[src]
impl Display for UpdateStatementAuto Trait Implementations
impl Send for UpdateStatement
impl Send for UpdateStatementimpl Sync for UpdateStatement
impl Sync for UpdateStatement