pub type ResponseResult<T> = Result<T, ResponseError>;Expand description
Type alias of Result<T, ResponseError>, use this type to return from functions that are part of request handling but are not themselves requests (e.g. database functions)
Aliased Type§
pub enum ResponseResult<T> {
Ok(T),
Err(ResponseError),
}