pub type HandlerResult<T, E = Error> = Result<T, E>;Expand description
Convenience alias for generic handler results.
Defaults to Result<T, Error>, but the error type can be overridden.
Aliased Type§
pub enum HandlerResult<T, E = Error> {
Ok(T),
Err(E),
}