Enum dir_signature::v1::Error []

pub enum Error {
    WriteError(Error),
    OpenDir(Error),
    ListDir(Error),
    ReadFile(Error),
    NoRootDirectory,
    UnsupportedHash,
    // some variants omitted
}

Error returned from scanning and making an index

Variants

Error writing index

Error opening dir (O_PATH)

Error listing dir

Error reading file

No root directory

Unsupported hash algorithm

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Error

Formats the value using the given formatter. Read more

impl Error for Error

A short description of the error. Read more

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error