Enum ffsend_api::action::upload::Error[][src]

pub enum Error {
    Prepare(PrepareError),
    File(FileError),
    Upload(UploadError),
    Params(ParamsError),
    Password(PasswordError),
}

Variants

An error occurred while preparing a file for uploading.

An error occurred while opening, reading or using the file that the should be uploaded.

An error occurred while uploading the file.

An error occurred while chaining file parameters.

An error occurred while setting the password.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<MetaError> for Error
[src]

Performs the conversion.

impl From<FileError> for Error
[src]

Performs the conversion.

impl From<ReaderError> for Error
[src]

Performs the conversion.

impl From<UploadError> for Error
[src]

Performs the conversion.

impl From<ParamsError> for Error
[src]

Performs the conversion.

impl From<PasswordError> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error