Struct sql_from_models_parser::ast::Between
source · 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: bool
§low: Box<Expr>
§high: Box<Expr>
Trait Implementations§
source§impl PartialEq for Between
impl PartialEq for Between
impl Eq for Between
impl StructuralPartialEq for Between
Auto Trait Implementations§
impl RefUnwindSafe for Between
impl Send for Between
impl Sync for Between
impl Unpin for Between
impl UnwindSafe for Between
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more