[][src]Enum ffsend_api::action::params::ParamsDataError

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

impl Debug for ParamsDataError[src]

impl Display for ParamsDataError[src]

impl Error for ParamsDataError[src]

impl From<Error> for ParamsDataError[src]

impl From<ParamsDataError> for PrepareError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any