pub enum ParamsDataError {
DownloadBounds,
Owned(Error),
}
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(Error)
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§
Source§impl Debug for ParamsDataError
impl Debug for ParamsDataError
Source§impl Display for ParamsDataError
impl Display for ParamsDataError
Source§impl Error for ParamsDataError
impl Error for ParamsDataError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for ParamsDataError
impl From<Error> for ParamsDataError
Source§impl From<ParamsDataError> for PrepareError
impl From<ParamsDataError> for PrepareError
Source§fn from(source: ParamsDataError) -> Self
fn from(source: ParamsDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParamsDataError
impl RefUnwindSafe for ParamsDataError
impl Send for ParamsDataError
impl Sync for ParamsDataError
impl Unpin for ParamsDataError
impl UnwindSafe for ParamsDataError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more