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§
impl Eq for Between
impl StructuralPartialEq for Between
Auto Trait Implementations§
impl Freeze for Between
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