Enum ffsend_api::action::metadata::RequestError
source · pub enum RequestError {
Auth(NonceError),
Meta(MetaError),
}
Variants
Auth(NonceError)
Failed authenticating, in order to fetch the file data.
Meta(MetaError)
Failed to retrieve the file metadata.
Trait Implementations
sourceimpl Debug for RequestError
impl Debug for RequestError
sourceimpl Display for RequestError
impl Display for RequestError
sourceimpl Fail for RequestError
impl Fail for RequestError
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<RequestError> for Error
impl From<RequestError> for Error
sourcefn from(err: RequestError) -> Error
fn from(err: RequestError) -> Error
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for RequestError
impl Send for RequestError
impl Sync for RequestError
impl Unpin for RequestError
impl UnwindSafe for RequestError
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