Struct partiql_logical::BetweenExpr
source · pub struct BetweenExpr {
pub value: Box<ValueExpr>,
pub from: Box<ValueExpr>,
pub to: Box<ValueExpr>,
}
Expand description
Represents a PartiQL BETWEEN
expression, e.g. BETWEEN 500 AND 600
.
Fields§
§value: Box<ValueExpr>
§from: Box<ValueExpr>
§to: Box<ValueExpr>
Trait Implementations§
source§impl Clone for BetweenExpr
impl Clone for BetweenExpr
source§fn clone(&self) -> BetweenExpr
fn clone(&self) -> BetweenExpr
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BetweenExpr
impl Debug for BetweenExpr
source§impl PartialEq<BetweenExpr> for BetweenExpr
impl PartialEq<BetweenExpr> for BetweenExpr
source§fn eq(&self, other: &BetweenExpr) -> bool
fn eq(&self, other: &BetweenExpr) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BetweenExpr
impl StructuralEq for BetweenExpr
impl StructuralPartialEq for BetweenExpr
Auto Trait Implementations§
impl RefUnwindSafe for BetweenExpr
impl Send for BetweenExpr
impl Sync for BetweenExpr
impl Unpin for BetweenExpr
impl UnwindSafe for BetweenExpr
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