Enum plexo_sdk::common::commons::SQLComparison
source · pub enum SQLComparison<T>where
T: Default,{
Equal(T),
NotEqual(T),
GreaterThan(T),
GreaterThanOrEqual(T),
LessThan(T),
LessThanOrEqual(T),
Like(T),
NotLike(T),
In(T),
NotIn(T),
IsNull(T),
IsNotNull(T),
}Variants§
Equal(T)
NotEqual(T)
GreaterThan(T)
GreaterThanOrEqual(T)
LessThan(T)
LessThanOrEqual(T)
Like(T)
NotLike(T)
In(T)
NotIn(T)
IsNull(T)
IsNotNull(T)
Trait Implementations§
source§impl<T> Clone for SQLComparison<T>
impl<T> Clone for SQLComparison<T>
source§fn clone(&self) -> SQLComparison<T>
fn clone(&self) -> SQLComparison<T>
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<T> Debug for SQLComparison<T>
impl<T> Debug for SQLComparison<T>
source§impl<T> Display for SQLComparison<T>where
T: Default,
impl<T> Display for SQLComparison<T>where
T: Default,
source§impl<T> FromStr for SQLComparison<T>where
T: Default,
impl<T> FromStr for SQLComparison<T>where
T: Default,
Auto Trait Implementations§
impl<T> Freeze for SQLComparison<T>where
T: Freeze,
impl<T> RefUnwindSafe for SQLComparison<T>where
T: RefUnwindSafe,
impl<T> Send for SQLComparison<T>where
T: Send,
impl<T> Sync for SQLComparison<T>where
T: Sync,
impl<T> Unpin for SQLComparison<T>where
T: Unpin,
impl<T> UnwindSafe for SQLComparison<T>where
T: UnwindSafe,
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