[−][src]Enum chttp::Error
All possible types of errors that can be returned from cHTTP.
Variants
AbortedThe request was aborted before it could be completed.
BadClientCertificate(Option<String>)A problem occurred with the local certificate.
BadServerCertificate(Option<String>)The server certificate could not be validated.
ConnectFailedFailed to connect to the server.
CouldntResolveHostCouldn't resolve host name.
CouldntResolveProxyCouldn't resolve proxy host name.
Curl(String)An unrecognized error thrown by curl.
InternalAn internal error occurred in the client.
InvalidContentEncoding(Option<String>)Unrecognized or bad content encoding returned by the server.
InvalidCredentialsProvided credentials were rejected by the server.
InvalidHttpFormat(Error)Validation error when constructing the request or parsing the response.
InvalidUtf8Invalid UTF-8 string error.
Io(Error)An unknown I/O error.
NoResponseThe server did not send a response.
RangeRequestUnsupportedThe 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.
TimeoutAn ongoing request took longer than the configured timeout time.
TooManyConnectionsReturned when making more simultaneous requests would exceed the configured TCP connection limit.
TooManyRedirectsNumber of redirects hit the maximum amount.
Trait Implementations
Auto Trait Implementations
impl Sync for Error
impl Send for Error
impl Unpin for Error
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,