pub enum ThresholdOp {
Lt,
Gt,
Lte,
Gte,
}Expand description
Comparison operator for threshold evaluation.
Variants§
Trait Implementations§
Source§impl Clone for ThresholdOp
impl Clone for ThresholdOp
Source§fn clone(&self) -> ThresholdOp
fn clone(&self) -> ThresholdOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ThresholdOp
impl Debug for ThresholdOp
Source§impl<'de> Deserialize<'de> for ThresholdOp
impl<'de> Deserialize<'de> for ThresholdOp
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 ThresholdOp
impl PartialEq for ThresholdOp
Source§impl Serialize for ThresholdOp
impl Serialize for ThresholdOp
impl StructuralPartialEq for ThresholdOp
Auto Trait Implementations§
impl Freeze for ThresholdOp
impl RefUnwindSafe for ThresholdOp
impl Send for ThresholdOp
impl Sync for ThresholdOp
impl Unpin for ThresholdOp
impl UnsafeUnpin for ThresholdOp
impl UnwindSafe for ThresholdOp
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