pub struct SetComparison {
pub expr: Box<Expr>,
pub subquery: Subquery,
pub op: Operator,
pub quantifier: SetQuantifier,
}Expand description
Set comparison subquery (e.g. = ANY, > ALL)
Fields§
§expr: Box<Expr>The expression to compare
subquery: SubquerySubquery that will produce a single column of data to compare against
op: OperatorComparison operator (e.g. =, >, <)
quantifier: SetQuantifierQuantifier (ANY/ALL)
Implementations§
Source§impl SetComparison
impl SetComparison
Trait Implementations§
Source§impl Clone for SetComparison
impl Clone for SetComparison
Source§fn clone(&self) -> SetComparison
fn clone(&self) -> SetComparison
Returns a duplicate 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 SetComparison
impl Debug for SetComparison
Source§impl Hash for SetComparison
impl Hash for SetComparison
Source§impl PartialEq for SetComparison
impl PartialEq for SetComparison
Source§impl PartialOrd for SetComparison
impl PartialOrd for SetComparison
impl Eq for SetComparison
impl StructuralPartialEq for SetComparison
Auto Trait Implementations§
impl Freeze for SetComparison
impl !RefUnwindSafe for SetComparison
impl Send for SetComparison
impl Sync for SetComparison
impl Unpin for SetComparison
impl UnsafeUnpin for SetComparison
impl !UnwindSafe for SetComparison
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more