Skip to main content

WhereClause

Type Alias WhereClause 

Source
pub type WhereClause = WhereExpression;

Aliased Type§

pub enum WhereClause {
    Condition {
        column: String,
        operator: String,
        value: Value,
    },
    And {
        left: Box<WhereExpression>,
        right: Box<WhereExpression>,
    },
    Or {
        left: Box<WhereExpression>,
        right: Box<WhereExpression>,
    },
}

Variants§

§

Condition

Fields

§column: String
§operator: String
§value: Value
§

And

§

Or