Enum reqwest::HyperError
[−]
[src]
pub enum HyperError { Method, Uri(ParseError), Version, Header, TooLarge, Status, Io(Error), Ssl(Box<Error + 'static + Send + Sync>), Utf8(Utf8Error), // some variants omitted }
A set of errors that can occur parsing HTTP streams.
Variants
Method
An invalid Method
, such as GE,T
.
Uri(ParseError)
An invalid RequestUri
, such as exam ple.domain
.
Version
An invalid HttpVersion
, such as HTP/1.1
Header
An invalid Header
.
TooLarge
A message head is too large to be reasonable.
Status
An invalid Status
, such as 1337 ELITE
.
Io(Error)
An io::Error
that occurred while trying to read or write to a network stream.
Ssl(Box<Error + 'static + Send + Sync>)
An error from a SSL library.
Utf8(Utf8Error)
Parsing a field as string failed
Trait Implementations
impl From<ParseError> for Error
[src]
fn from(err: ParseError) -> Error
[src]
Performs the conversion.
impl From<FromUtf8Error> for Error
[src]
fn from(err: FromUtf8Error) -> Error
[src]
Performs the conversion.
impl From<Error> for Error
[src]
impl From<Error> for Error
[src]
impl From<Utf8Error> for Error
[src]
impl Error for Error
[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
[src]
The lower-level cause of this error, if any. Read more
impl Display for Error
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl Debug for Error
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more