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
Parse(&'static str)Config(&'static str)Proxy(&'static str)IO(Error)SSL(Error)SSLHandshake(HandshakeError<TcpStream>)Trait Implementations
impl Debug for HttpError[src]
impl From<Error> for HttpError[src]
impl From<HttpError> for HttpError[src]
impl From<HandshakeError<TcpStream>> for HttpError[src]
fn from(err: HandshakeError<TcpStream>) -> HttpError
Performs the conversion.