pub type Result<T = Response> = Result<T, Error>;
A specialized Result type for Surf.
enum Result<T = Response> { Ok(T), Err(Error), }
Contains the success value
Contains the error value