Enum mio_httpc::Error[][src]

pub enum Error {
    Io(Error),
    Utf8(Utf8Error),
    FromUtf8(FromUtf8Error),
    Addr(AddrParseError),
    Httparse(Error),
    WebSocketFail(Response),
    TimeOut,
    MissingBody,
    ResponseTooBig,
    Closed,
    NoHost,
    InvalidScheme,
    NoSpace,
    Url(ParseError),
    Other(&'static str),
    NoTls,
    ChunkedParse,
    WebSocketParse,
    AuthenticateParse,
    ChunkOverlimit(usize),
}

Variants

Request structure did not contain body and CallSimple was used for POST/PUT.

Response over max_response limit

Connection closed.

No host found in request

Invalid scheme

All 0xFFFF slots for connections are full.

You must pick one of the features: native, rustls, openssl

Eror while parsing chunked stream

Eror while parsing chunked stream

Eror while parsing chunked stream

Chunk was larger than configured CallBuilder::chunked_max_chunk.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl From<ParseError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error