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§
source§impl PartialEq<Between> for Between
impl PartialEq<Between> for Between
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§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.