Struct datafusion_expr::expr::Between
source · pub struct Between {
pub expr: Box<Expr>,
pub negated: bool,
pub low: Box<Expr>,
pub high: Box<Expr>,
}
Expand description
BETWEEN expression
Fields
expr: Box<Expr>
The value to compare
negated: bool
Whether the expression is negated
low: Box<Expr>
The low end of the range
high: Box<Expr>
The high end of the range
Implementations
Trait Implementations
impl Eq for Between
impl StructuralEq 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more