pub type HandlerResult<T> = Result<Output<T>, Error>;
The result type for command handlers.
Enables use of the ? operator for error propagation.
?
pub enum HandlerResult<T> { Ok(Output<T>), Err(Error), }
Contains the success value
Contains the error value