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