pub type Result<T, E = Error> = Result<T, E>;
Expand description
A convenience Result
for Actix Web operations.
This type alias is generally used to avoid writing out actix_http::Error
directly.
Aliased Type§
enum Result<T, E = Error> {
Ok(T),
Err(E),
}