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)
The HTTP client encountered invalid UTF-8 data.
Tuple Fields of Utf8
IO(Error)
The HTTP client encountered some I/O error.
Tuple Fields of IO
0: Error
Request(RequestError)
Some other error from the HTTP client implementation.
Tuple Fields of Request
0: RequestError
Trait Implementations
Performs the conversion.
Performs the conversion.