Struct mio_httpc::HttpError [] [src]

pub struct HttpError { /* fields omitted */ }

A generic "error" for HTTP connections

This error type is less specific than the error returned from other functions in this crate, but all other errors can be converted to this error. Consumers of this crate can typically consume and work with this form of error for conversions with the ? operator.

Trait Implementations

impl From<InvalidHeaderName> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderValue> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidUriBytes> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderNameBytes> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidUriParts> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidUri> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderValueBytes> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidStatusCode> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidMethod> for Error
[src]

[src]

Performs the conversion.

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Error for Error
[src]

[src]

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more