Enum ffsend_api::action::upload::PrepareError
source · pub enum PrepareError {
Meta(MetaError),
Reader(ReaderError),
}
Variants
Meta(MetaError)
Failed to prepare the file metadata for uploading.
Reader(ReaderError)
Failed to create an encrypted file reader, that encrypts the file on the fly when it is read.
Trait Implementations
sourceimpl Debug for PrepareError
impl Debug for PrepareError
sourceimpl Display for PrepareError
impl Display for PrepareError
sourceimpl Fail for PrepareError
impl Fail for PrepareError
sourcefn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreAuto Trait Implementations
impl RefUnwindSafe for PrepareError
impl Send for PrepareError
impl Sync for PrepareError
impl Unpin for PrepareError
impl UnwindSafe for PrepareError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more