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

pub enum ParamsDataError {
    DownloadBounds,
    Owned(DataError),
}

Variants

The number of downloads is invalid, as it was out of the allowed bounds. See PARAMS_DOWNLOAD_MIN and PARAMS_DOWNLOAD_MAX.

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]

Formats the value using the given formatter. Read more

Auto Trait Implementations