Enum ffsend_api::action::delete::DeleteError
source · pub enum DeleteError {
Request,
Response(ResponseError),
}
Variants
Request
Sending the file deletion request failed.
Response(ResponseError)
The server responded with an error while requesting file deletion.
Trait Implementations
sourceimpl Debug for DeleteError
impl Debug for DeleteError
sourceimpl Display for DeleteError
impl Display for DeleteError
sourceimpl Fail for DeleteError
impl Fail for DeleteError
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<DeleteError> for Error
impl From<DeleteError> for Error
sourcefn from(err: DeleteError) -> Error
fn from(err: DeleteError) -> Error
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for DeleteError
impl Send for DeleteError
impl Sync for DeleteError
impl Unpin for DeleteError
impl UnwindSafe for DeleteError
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