Enum ffsend_api::action::upload::Error [−][src]
pub enum Error {
Prepare(PrepareError),
File(FileError),
Upload(UploadError),
Params(ParamsError),
Password(PasswordError),
}Variants
Prepare(PrepareError)An error occurred while preparing a file for uploading.
File(FileError)An error occurred while opening, reading or using the file that the should be uploaded.
Upload(UploadError)An error occurred while uploading the file.
Params(ParamsError)An error occurred while chaining file parameters.
Password(PasswordError)An error occurred while setting the password.
Trait Implementations
impl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<MetaError> for Error[src]
impl From<MetaError> for Errorimpl From<FileError> for Error[src]
impl From<FileError> for Errorimpl From<ReaderError> for Error[src]
impl From<ReaderError> for Errorfn from(err: ReaderError) -> Error[src]
fn from(err: ReaderError) -> ErrorPerforms the conversion.
impl From<UploadError> for Error[src]
impl From<UploadError> for Errorfn from(err: UploadError) -> Error[src]
fn from(err: UploadError) -> ErrorPerforms the conversion.
impl From<ParamsError> for Error[src]
impl From<ParamsError> for Errorfn from(err: ParamsError) -> Error[src]
fn from(err: ParamsError) -> ErrorPerforms the conversion.
impl From<PasswordError> for Error[src]
impl From<PasswordError> for Errorfn from(err: PasswordError) -> Error[src]
fn from(err: PasswordError) -> ErrorPerforms the conversion.