pub enum ComparisonRightSide {
Value(SelectExpression),
ValueList(Vec<SelectExpression>),
Range(SelectExpression, SelectExpression),
}Expand description
Right side of comparison
Variants§
Value(SelectExpression)
Single value
ValueList(Vec<SelectExpression>)
List of values for IN/NOT IN
Range(SelectExpression, SelectExpression)
Range for BETWEEN
Trait Implementations§
Source§impl Clone for ComparisonRightSide
impl Clone for ComparisonRightSide
Source§fn clone(&self) -> ComparisonRightSide
fn clone(&self) -> ComparisonRightSide
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ComparisonRightSide
impl Debug for ComparisonRightSide
Source§impl<'de> Deserialize<'de> for ComparisonRightSide
impl<'de> Deserialize<'de> for ComparisonRightSide
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ComparisonRightSide
impl PartialEq for ComparisonRightSide
Source§fn eq(&self, other: &ComparisonRightSide) -> bool
fn eq(&self, other: &ComparisonRightSide) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComparisonRightSide
impl Serialize for ComparisonRightSide
impl StructuralPartialEq for ComparisonRightSide
Auto Trait Implementations§
impl Freeze for ComparisonRightSide
impl RefUnwindSafe for ComparisonRightSide
impl Send for ComparisonRightSide
impl Sync for ComparisonRightSide
impl Unpin for ComparisonRightSide
impl UnsafeUnpin for ComparisonRightSide
impl UnwindSafe for ComparisonRightSide
Blanket Implementations§
impl<T> Allocation for T
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