Enum minihttp::HttpError [] [src]

pub enum HttpError {
    Parse(&'static str),
    Config(&'static str),
    Proxy(&'static str),
    IO(Error),
    SSL(Error),
    SSLHandshake(HandshakeError<TcpStream>),
}

http basic error type

Variants

Trait Implementations

impl Debug for HttpError
[src]

Formats the value using the given formatter.

impl From<Error> for HttpError
[src]

Performs the conversion.

impl From<HttpError> for HttpError
[src]

Performs the conversion.

impl From<HandshakeError<TcpStream>> for HttpError
[src]

Performs the conversion.

impl From<Error> for HttpError
[src]

Performs the conversion.

impl Display for HttpError
[src]

Formats the value using the given formatter. Read more