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
MethodAn invalid Method, such as GE,T.
Uri(ParseError)An invalid RequestUri, such as exam ple.domain.
VersionAn invalid HttpVersion, such as HTP/1.1
HeaderAn invalid Header.
TooLargeA message head is too large to be reasonable.
StatusAn invalid Status, such as 1337 ELITE.
Io(IoError)An io::Error that occurred while trying to read or write to a network stream.
Ssl(Box<StdError + Send + Sync>)An error from a SSL library.
Http2(Http2Error)An HTTP/2-specific error, coming from the solicit library.
Utf8(Utf8Error)Parsing a field as string failed
Trait Implementations
impl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for Error[src]
impl Display for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl StdError for Error[src]
impl StdError for Errorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&StdError>[src]
fn cause(&self) -> Option<&StdError>The lower-level cause of this error, if any. Read more
impl From<IoError> for Error[src]
impl From<IoError> for Errorimpl From<ParseError> for Error[src]
impl From<ParseError> for Errorfn from(err: ParseError) -> Error[src]
fn from(err: ParseError) -> ErrorPerforms the conversion.
impl From<SslError> for Error[src]
impl From<SslError> for Errorimpl From<Utf8Error> for Error[src]
impl From<Utf8Error> for Errorimpl From<FromUtf8Error> for Error[src]
impl From<FromUtf8Error> for Errorfn from(err: FromUtf8Error) -> Error[src]
fn from(err: FromUtf8Error) -> ErrorPerforms the conversion.
impl From<Error> for Error[src]
impl From<Error> for Errorimpl From<Http2Error> for Error[src]
impl From<Http2Error> for Errorfn from(err: Http2Error) -> Error[src]
fn from(err: Http2Error) -> ErrorPerforms the conversion.