#[non_exhaustive]pub enum UnknownVariant {
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 UnknownVariant
impl Debug for UnknownVariant
Source§impl PartialEq for UnknownVariant
impl PartialEq for UnknownVariant
Source§fn eq(&self, other: &UnknownVariant) -> bool
fn eq(&self, other: &UnknownVariant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnknownVariant
Auto Trait Implementations§
impl !RefUnwindSafe for UnknownVariant
impl !UnwindSafe for UnknownVariant
impl Freeze for UnknownVariant
impl Send for UnknownVariant
impl Sync for UnknownVariant
impl Unpin for UnknownVariant
impl UnsafeUnpin for UnknownVariant
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