pub enum DropboxError {
BlockingRequestError(Error),
DbxUserCheckError(String),
DbxPathError(String),
DbxExistedError(String),
DbxInvalidTokenError(String),
DbxFromLookUpError(String),
DbxRequestLimitsError(String),
DbxAccessError(String),
DbxConflictError(String),
DbxServerError(String),
OtherError(String),
BodyParseError(Error),
}
Variants§
BlockingRequestError(Error)
DbxUserCheckError(String)
DbxPathError(String)
DbxExistedError(String)
DbxInvalidTokenError(String)
DbxFromLookUpError(String)
DbxRequestLimitsError(String)
DbxAccessError(String)
DbxConflictError(String)
DbxServerError(String)
OtherError(String)
BodyParseError(Error)
Trait Implementations§
Source§impl Debug for DropboxError
impl Debug for DropboxError
Source§impl From<Error> for DropboxError
impl From<Error> for DropboxError
Auto Trait Implementations§
impl Freeze for DropboxError
impl !RefUnwindSafe for DropboxError
impl Send for DropboxError
impl Sync for DropboxError
impl Unpin for DropboxError
impl !UnwindSafe for DropboxError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more