pub enum ModelWhere<T: Value> {
Equal(&'static str, T),
NotEqual(&'static str, T),
GreaterThan(&'static str, T),
GreaterThanOrEqual(&'static str, T),
LessThan(&'static str, T),
LessThanOrEqual(&'static str, T),
Contains(&'static str, T),
}
Variants§
Equal(&'static str, T)
NotEqual(&'static str, T)
GreaterThan(&'static str, T)
GreaterThanOrEqual(&'static str, T)
LessThan(&'static str, T)
LessThanOrEqual(&'static str, T)
Contains(&'static str, T)
Implementations§
Trait Implementations§
Source§impl<T: Clone + Value> Clone for ModelWhere<T>
impl<T: Clone + Value> Clone for ModelWhere<T>
Source§fn clone(&self) -> ModelWhere<T>
fn clone(&self) -> ModelWhere<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for ModelWhere<T>where
T: Freeze,
impl<T> RefUnwindSafe for ModelWhere<T>where
T: RefUnwindSafe,
impl<T> Send for ModelWhere<T>where
T: Send,
impl<T> Sync for ModelWhere<T>where
T: Sync,
impl<T> Unpin for ModelWhere<T>where
T: Unpin,
impl<T> UnwindSafe for ModelWhere<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