pub enum HandlerHandleError {
BaseCommandInvalid(BaseCommand),
PendingRequestNotFount(BaseCommand),
PendingRequestMismatch(BaseCommand),
PendingSequenceNotFount(BaseCommand),
Unsupported(BaseCommand),
}
Variants§
BaseCommandInvalid(BaseCommand)
PendingRequestNotFount(BaseCommand)
PendingRequestMismatch(BaseCommand)
PendingSequenceNotFount(BaseCommand)
Unsupported(BaseCommand)
Trait Implementations§
Source§impl Debug for HandlerHandleError
impl Debug for HandlerHandleError
Source§impl Display for HandlerHandleError
impl Display for HandlerHandleError
Source§impl Error for HandlerHandleError
impl Error for HandlerHandleError
1.30.0 · 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 !Freeze for HandlerHandleError
impl RefUnwindSafe for HandlerHandleError
impl Send for HandlerHandleError
impl Sync for HandlerHandleError
impl Unpin for HandlerHandleError
impl UnwindSafe for HandlerHandleError
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