pub enum HandlerError {
Parse,
Runtime,
}Expand description
Error returned by a handler
This enum should not be used
Variants§
Parse
Could not parse arguments, delegates to the next handler
Runtime
Parsing successful, but the handler failed, stop the update processing
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HandlerError
impl RefUnwindSafe for HandlerError
impl Send for HandlerError
impl Sync for HandlerError
impl Unpin for HandlerError
impl UnwindSafe for HandlerError
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