pub enum EvalStringCheckGraderOperation {
Eq,
Ne,
Like,
Ilike,
}
Expand description
The string check operation to perform. One of eq
, ne
, like
, or ilike
.
Variants§
Trait Implementations§
Source§impl Clone for EvalStringCheckGraderOperation
impl Clone for EvalStringCheckGraderOperation
Source§fn clone(&self) -> EvalStringCheckGraderOperation
fn clone(&self) -> EvalStringCheckGraderOperation
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<'de> Deserialize<'de> for EvalStringCheckGraderOperation
impl<'de> Deserialize<'de> for EvalStringCheckGraderOperation
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 EvalStringCheckGraderOperation
impl PartialEq for EvalStringCheckGraderOperation
Source§fn eq(&self, other: &EvalStringCheckGraderOperation) -> bool
fn eq(&self, other: &EvalStringCheckGraderOperation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for EvalStringCheckGraderOperation
impl StructuralPartialEq for EvalStringCheckGraderOperation
Auto Trait Implementations§
impl Freeze for EvalStringCheckGraderOperation
impl RefUnwindSafe for EvalStringCheckGraderOperation
impl Send for EvalStringCheckGraderOperation
impl Sync for EvalStringCheckGraderOperation
impl Unpin for EvalStringCheckGraderOperation
impl UnwindSafe for EvalStringCheckGraderOperation
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