pub enum PrecisionLevel {
Low,
Moderate,
High,
}Expand description
Precision level of the expectation.
Variants§
Low
Low precision (general reasonableness).
Moderate
Moderate precision.
High
High precision (detailed calculation).
Trait Implementations§
Source§impl Clone for PrecisionLevel
impl Clone for PrecisionLevel
Source§fn clone(&self) -> PrecisionLevel
fn clone(&self) -> PrecisionLevel
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 PrecisionLevel
impl Debug for PrecisionLevel
Source§impl Default for PrecisionLevel
impl Default for PrecisionLevel
Source§fn default() -> PrecisionLevel
fn default() -> PrecisionLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrecisionLevel
impl<'de> Deserialize<'de> for PrecisionLevel
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 Hash for PrecisionLevel
impl Hash for PrecisionLevel
Source§impl PartialEq for PrecisionLevel
impl PartialEq for PrecisionLevel
Source§impl Serialize for PrecisionLevel
impl Serialize for PrecisionLevel
impl Copy for PrecisionLevel
impl Eq for PrecisionLevel
impl StructuralPartialEq for PrecisionLevel
Auto Trait Implementations§
impl Freeze for PrecisionLevel
impl RefUnwindSafe for PrecisionLevel
impl Send for PrecisionLevel
impl Sync for PrecisionLevel
impl Unpin for PrecisionLevel
impl UnsafeUnpin for PrecisionLevel
impl UnwindSafe for PrecisionLevel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.