pub enum HlcError<E> {
Skew(SkewError),
Storage(E),
}Expand description
Error from a clock operation: either the storage backend failed, or a remote timestamp was rejected by the skew bound.
Variants§
Skew(SkewError)
The remote timestamp is too far ahead of the local wall clock — the
entry carrying it must be rejected. See SkewError.
Storage(E)
The storage backend failed to load or save clock state.
Trait Implementations§
Source§impl<E: Error + 'static> Error for HlcError<E>
impl<E: Error + 'static> Error for HlcError<E>
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<E> Freeze for HlcError<E>where
E: Freeze,
impl<E> RefUnwindSafe for HlcError<E>where
E: RefUnwindSafe,
impl<E> Send for HlcError<E>where
E: Send,
impl<E> Sync for HlcError<E>where
E: Sync,
impl<E> Unpin for HlcError<E>where
E: Unpin,
impl<E> UnsafeUnpin for HlcError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for HlcError<E>where
E: UnwindSafe,
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