pub type Result<T, E = Error> = Result<T, E>;
A convenience Result for Actix Web operations.
Result
This type alias is generally used to avoid writing out actix_http::Error directly.
actix_http::Error