Enum dhl::DepotError []

pub enum DepotError {
    FileError(String, FileError),
    TlsError(Arc<Error>),
    HttpError(String, HttpError),
    MissingLibraryFile(String),
}

Variants

Trait Implementations

impl Debug for DepotError
[src]

[src]

Formats the value using the given formatter.

impl Display for DepotError

Formats the value using the given formatter. Read more

impl Error for DepotError

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Arc<Error>> for DepotError

Performs the conversion.

impl<'a> From<Context<&'a str, FileError>> for DepotError

Performs the conversion.

impl<'a> From<Context<&'a str, HttpError>> for DepotError

Performs the conversion.