Enum ffsend_api::action::upload::ReaderError
source · pub enum ReaderError {
Encrypt,
Progress,
}
Variants
Encrypt
An error occurred while creating the file encryptor.
Progress
Failed to create the progress reader, attached to the file reader, to measure the uploading progress.
Trait Implementations
sourceimpl Debug for ReaderError
impl Debug for ReaderError
sourceimpl Display for ReaderError
impl Display for ReaderError
sourceimpl Fail for ReaderError
impl Fail for ReaderError
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 moresourceimpl From<ReaderError> for Error
impl From<ReaderError> for Error
sourcefn from(err: ReaderError) -> Error
fn from(err: ReaderError) -> Error
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ReaderError
impl Send for ReaderError
impl Sync for ReaderError
impl Unpin for ReaderError
impl UnwindSafe for ReaderError
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