Enum ffsend_api::action::info::Error [−][src]
pub enum Error {
Prepare(PrepareError),
Expired,
Info(InfoError),
}Variants
Prepare(PrepareError)An error occurred while preparing the action.
ExpiredThe given Send file has expired, or did never exist in the first place. Therefore the file could not be downloaded.
Info(InfoError)An error has occurred while sending the info request to the server.
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<PrepareError> for Error[src]
impl From<PrepareError> for Errorfn from(err: PrepareError) -> Error[src]
fn from(err: PrepareError) -> ErrorPerforms the conversion.
impl From<InfoError> for Error[src]
impl From<InfoError> for Error