Type Definition actix_web::Result

source ·
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.