pub enum Error {
Exists(Error),
Request(RequestError),
Expired,
PasswordRequired,
}Variants§
Exists(Error)
An error occurred while checking whether the file exists on the server.
Request(RequestError)
A general error occurred while requesting the file data. This may be because authentication failed, because decrypting the file metadata didn’t succeed, or due to some other reason.
Expired
The given Send file has expired, or did never exist in the first place. Therefore the file could not be downloaded.
PasswordRequired
A password is required, but was not given.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for Error
impl From<Error> for Error
Source§fn from(source: MetadataError) -> Self
fn from(source: MetadataError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for Error
impl From<Error> for Error
Source§fn from(source: ExistsError) -> Self
fn from(source: ExistsError) -> Self
Converts to this type from the input type.
Source§impl From<NonceError> for Error
impl From<NonceError> for Error
Source§fn from(err: NonceError) -> Error
fn from(err: NonceError) -> Error
Converts to this type from the input type.
Source§impl From<RequestError> for Error
impl From<RequestError> for Error
Source§fn from(source: RequestError) -> Self
fn from(source: RequestError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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