pub enum RectifyError {
WrongTickId {
expected: TickId,
encountered: TickId,
},
SeerError(SeerError),
QueueError(QueueError),
}
Variants§
Trait Implementations§
source§impl Debug for RectifyError
impl Debug for RectifyError
source§impl ErrorLevelProvider for RectifyError
impl ErrorLevelProvider for RectifyError
fn error_level(&self) -> ErrorLevel
source§impl From<QueueError> for RectifyError
impl From<QueueError> for RectifyError
source§fn from(value: QueueError) -> Self
fn from(value: QueueError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RectifyError
impl RefUnwindSafe for RectifyError
impl Send for RectifyError
impl Sync for RectifyError
impl Unpin for RectifyError
impl UnwindSafe for RectifyError
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