Enum check_jitter::UnkownVariant
source · #[non_exhaustive]pub enum UnkownVariant {
Error(CheckJitterError),
FailedToInitLogger(String),
InvalidAddr(String),
InvalidMinMaxInterval(u64, u64),
ClapError(String),
NoThresholds,
RangeParseError(String, Error),
Timeout(Duration),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Error(CheckJitterError)
FailedToInitLogger(String)
InvalidAddr(String)
InvalidMinMaxInterval(u64, u64)
ClapError(String)
NoThresholds
RangeParseError(String, Error)
Timeout(Duration)
Trait Implementations§
source§impl Debug for UnkownVariant
impl Debug for UnkownVariant
source§impl PartialEq for UnkownVariant
impl PartialEq for UnkownVariant
source§fn eq(&self, other: &UnkownVariant) -> bool
fn eq(&self, other: &UnkownVariant) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UnkownVariant
Auto Trait Implementations§
impl Freeze for UnkownVariant
impl !RefUnwindSafe for UnkownVariant
impl Send for UnkownVariant
impl Sync for UnkownVariant
impl Unpin for UnkownVariant
impl !UnwindSafe for UnkownVariant
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