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 ==.