Struct dropbox_sdk::default_client::RequestError  [−][src]
pub struct RequestError { /* fields omitted */ }This is supported on crate feature 
default_client only.Something went wrong making the request, or the server returned a response we didn’t expect.
Use the Display or Debug impls to see more details.
Note that this type is intentionally vague about the details beyond these string
representations, to allow implementation changes in the future.
Trait Implementations
impl Debug for RequestError[src]
impl Debug for RequestError[src]impl Display for RequestError[src]
impl Display for RequestError[src]impl Error for RequestError[src]
impl Error for RequestError[src]fn cause(&self) -> Option<&dyn Error>[src]
fn cause(&self) -> Option<&dyn Error>[src]👎 Deprecated since 1.33.0: 
replaced by Error::source, which can support downcasting
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0: 
use the Display impl or to_string()
impl From<RequestError> for DefaultClientError[src]
impl From<RequestError> for DefaultClientError[src]fn from(source: RequestError) -> Self[src]
fn from(source: RequestError) -> Self[src]Performs the conversion.
impl From<RequestError> for Error[src]
impl From<RequestError> for Error[src]fn from(e: RequestError) -> Self[src]
fn from(e: RequestError) -> Self[src]Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for RequestError
impl Send for RequestError
impl Sync for RequestError
impl Unpin for RequestError
impl !UnwindSafe for RequestError
Blanket Implementations
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more