Enum dropbox_sdk::default_client::DefaultClientError [−][src]
pub enum DefaultClientError {
Utf8(FromUtf8Error),
IO(Error),
Request(RequestError),
}
This is supported on crate feature
default_client
only.Expand description
Errors from the HTTP client encountered in the course of making a request.
Variants
Utf8(FromUtf8Error)
Tuple Fields
The HTTP client encountered invalid UTF-8 data.
IO(Error)
Tuple Fields
0: Error
The HTTP client encountered some I/O error.
Request(RequestError)
Tuple Fields
0: RequestError
Some other error from the HTTP client implementation.
Trait Implementations
Performs the conversion.
Performs the conversion.