Type Alias Result
pub type Result<T> = Result<T, Error>;Available on crate features
http and http-full only.Expand description
Result type often returned from methods that can have hyper Errors.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}