Struct http_with_url::Error [] [src]

pub struct Error { /* 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 Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl From<InvalidStatusCode> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidMethod> for Error
[src]

[src]

Performs the conversion.

impl From<ParseError> for Error
[src]

[src]

Performs the conversion.

impl From<BadTarget> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderName> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderNameBytes> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderValue> for Error
[src]

[src]

Performs the conversion.

impl From<InvalidHeaderValueBytes> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error