pub type HandlerResult<T> = Result<T, Error>;
Result of request handler.
enum HandlerResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value