Enum hyper::error::Error  
                   
                       [−]
                   
               [src]
pub enum Error {
    Method,
    Uri(ParseError),
    Version,
    Header,
    TooLarge,
    Status,
    Io(IoError),
    Ssl(Box<StdError + Send + Sync>),
    Http2(Http2Error),
    Utf8(Utf8Error),
    // some variants omitted
}A set of errors that can occur parsing HTTP streams.
Variants
| Method | An invalid  | |
| Uri | An invalid  | |
| Version | An invalid  | |
| Header | An invalid  | |
| TooLarge | A message head is too large to be reasonable. | |
| Status | An invalid  | |
| Io | An  | |
| Ssl | An error from a SSL library. | |
| Http2 | An HTTP/2-specific error, coming from the  | |
| Utf8 | Parsing a field as string failed | 
Trait Implementations
impl Display for Error[src]
impl StdError for Error[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&StdError>
The lower-level cause of this error, if any.
impl From<IoError> for Error[src]
impl From<ParseError> for Error[src]
fn from(err: ParseError) -> Error
Performs the conversion.
impl From<Utf8Error> for Error[src]
impl From<FromUtf8Error> for Error[src]
fn from(err: FromUtf8Error) -> Error
Performs the conversion.
impl From<Error> for Error[src]
impl From<Http2Error> for Error[src]
fn from(err: Http2Error) -> Error
Performs the conversion.