Enum ffsend_api::action::params::ParamsDataError
source · pub enum ParamsDataError {
DownloadBounds,
Owned(DataError),
}
Variants
DownloadBounds
The number of downloads is invalid, as it was out of the allowed
bounds. See PARAMS_DOWNLOAD_MIN
and PARAMS_DOWNLOAD_MAX
.
Owned(DataError)
Some error occurred while trying to wrap the parameter data in an owned object, which is required for authentication on the server. The wrapped error further described the problem.
Trait Implementations
sourceimpl Debug for ParamsDataError
impl Debug for ParamsDataError
sourceimpl Display for ParamsDataError
impl Display for ParamsDataError
sourceimpl Fail for ParamsDataError
impl Fail for ParamsDataError
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 ParamsDataError
impl Send for ParamsDataError
impl Sync for ParamsDataError
impl Unpin for ParamsDataError
impl UnwindSafe for ParamsDataError
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