Type Definition actix_web::error::Result [−][src]
type Result<T, E = Error> = Result<T, E>;
A specialized Result
for actix web operations
This typedef is generally used to avoid writing out
actix_web::error::Error
directly and is otherwise a direct mapping to
Result
.