pub type Result<T, E = Error> = Result<T, E>;Expand description
A specialized Result
for actix web operations
This typedef is generally used to avoid writing out
requiem_http::error::Error directly and is otherwise a direct mapping to
Result.
Aliased Type§
pub enum Result<T, E = Error> {
Ok(T),
Err(E),
}