Enum nom_sql::ConditionExpression [−][src]
pub enum ConditionExpression {
ComparisonOp(ConditionTree),
LogicalOp(ConditionTree),
NegationOp(Box<ConditionExpression>),
Base(ConditionBase),
Bracketed(Box<ConditionExpression>),
}Variants
ComparisonOp(ConditionTree)LogicalOp(ConditionTree)NegationOp(Box<ConditionExpression>)Base(ConditionBase)Bracketed(Box<ConditionExpression>)
Trait Implementations
impl Clone for ConditionExpression[src]
impl Clone for ConditionExpressionfn clone(&self) -> ConditionExpression[src]
fn clone(&self) -> ConditionExpressionReturns 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 ConditionExpression[src]
impl Debug for ConditionExpressionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for ConditionExpression[src]
impl Eq for ConditionExpressionimpl Hash for ConditionExpression[src]
impl Hash for ConditionExpressionfn 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 ConditionExpression[src]
impl PartialEq for ConditionExpressionfn eq(&self, other: &ConditionExpression) -> bool[src]
fn eq(&self, other: &ConditionExpression) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ConditionExpression) -> bool[src]
fn ne(&self, other: &ConditionExpression) -> boolThis method tests for !=.
impl Display for ConditionExpression[src]
impl Display for ConditionExpressionAuto Trait Implementations
impl Send for ConditionExpression
impl Send for ConditionExpressionimpl Sync for ConditionExpression
impl Sync for ConditionExpression