#[non_exhaustive]pub enum DesSaltStateError {
InvalidEpoch {
engine_boots: u32,
},
EpochSaturated {
engine_boots: u32,
},
Persistence(DesSaltPersistenceError),
}Expand description
Error creating or advancing durable DES sender state.
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.
InvalidEpoch
The persisted epoch is outside the SNMP engine-boots domain.
EpochSaturated
The boots epoch cannot be advanced without reuse.
Persistence(DesSaltPersistenceError)
The durable compare-and-set/install operation failed.
Trait Implementations§
Source§impl Debug for DesSaltStateError
impl Debug for DesSaltStateError
Source§impl Display for DesSaltStateError
impl Display for DesSaltStateError
Source§impl Error for DesSaltStateError
impl Error for DesSaltStateError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for DesSaltStateError
impl !UnwindSafe for DesSaltStateError
impl Freeze for DesSaltStateError
impl Send for DesSaltStateError
impl Sync for DesSaltStateError
impl Unpin for DesSaltStateError
impl UnsafeUnpin for DesSaltStateError
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