pub enum Quantifier {
All,
Any,
Some,
}Expand description
Quantifier for quantified comparisons
Variants§
All
ALL - comparison must be TRUE for all rows
Any
ANY - comparison must be TRUE for at least one row
Some
SOME - synonym for ANY
Trait Implementations§
Source§impl Clone for Quantifier
impl Clone for Quantifier
Source§fn clone(&self) -> Quantifier
fn clone(&self) -> Quantifier
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 Quantifier
impl Debug for Quantifier
Source§impl From<Quantifier> for Quantifier
impl From<Quantifier> for Quantifier
Source§fn from(q: Quantifier) -> Self
fn from(q: Quantifier) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Quantifier
impl PartialEq for Quantifier
Source§impl ToSql for Quantifier
impl ToSql for Quantifier
impl StructuralPartialEq for Quantifier
Auto Trait Implementations§
impl Freeze for Quantifier
impl RefUnwindSafe for Quantifier
impl Send for Quantifier
impl Sync for Quantifier
impl Unpin for Quantifier
impl UnwindSafe for Quantifier
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