[][src]Enum chttp::error::Error

pub enum Error {
    BadClientCertificate(Option<String>),
    BadServerCertificate(Option<String>),
    Canceled,
    ConnectFailed,
    CouldntResolveHost,
    CouldntResolveProxy,
    Curl(String),
    Internal,
    InvalidContentEncoding(Option<String>),
    InvalidCredentials,
    InvalidHttpFormat(Error),
    InvalidJson,
    InvalidUtf8,
    Io(Error),
    NoResponse,
    RangeRequestUnsupported,
    RequestBodyError(Option<String>),
    ResponseBodyError(Option<String>),
    SSLConnectFailed(Option<String>),
    SSLEngineError(Option<String>),
    Timeout,
    TooManyConnections,
    TooManyRedirects,
}

All possible types of errors that can be returned from cHTTP.

Variants

BadClientCertificate(Option<String>)

A problem occurred with the local certificate.

BadServerCertificate(Option<String>)

The server certificate could not be validated.

Canceled

The request was canceled before it could be completed.

ConnectFailed

Failed to connect to the server.

CouldntResolveHost

Couldn't resolve host name.

CouldntResolveProxy

Couldn't resolve proxy host name.

Curl(String)

An unrecognized error thrown by curl.

Internal

An internal error occurred in the client.

InvalidContentEncoding(Option<String>)

Unrecognized or bad content encoding returned by the server.

InvalidCredentials

Provided credentials were rejected by the server.

InvalidHttpFormat(Error)

Validation error when constructing the request or parsing the response.

InvalidJson

JSON syntax error when constructing or parsing JSON values.

InvalidUtf8

Invalid UTF-8 string error.

Io(Error)

An unknown I/O error.

NoResponse

The server did not send a response.

RangeRequestUnsupported

The server does not support or accept range requests.

RequestBodyError(Option<String>)

An error occurred while writing the request body.

ResponseBodyError(Option<String>)

An error occurred while reading the response body.

SSLConnectFailed(Option<String>)

Failed to connect over a secure socket.

SSLEngineError(Option<String>)

An error ocurred in the secure socket engine.

Timeout

An ongoing request took longer than the configured timeout time.

TooManyConnections

Returned when making more simultaneous requests would exceed the configured TCP connection limit.

TooManyRedirects

Number of redirects hit the maximum amount.

Trait Implementations

impl From<Error> for Error[src]

impl From<MultiError> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<FromUtf8Error> for Error[src]

impl From<Utf8Error> for Error[src]

impl From<Error> for Error[src]

impl Display for Error[src]

impl Debug for Error[src]

impl Error for Error[src]

default fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

default fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]