Struct sqlx_models_parser::ast::Between [−][src]
pub struct Between {
pub expr: Box<Expr>,
pub negated: bool,
pub low: Box<Expr>,
pub high: Box<Expr>,
}Expand description
<expr> [ NOT ] BETWEEN <low> AND <high>
Fields
expr: Box<Expr>negated: boollow: Box<Expr>high: Box<Expr>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Between
impl UnwindSafe for Between
Blanket Implementations
Mutably borrows from an owned value. Read more