Enum lru_disk_cache::Error [] [src]

pub enum Error {
    FileTooLarge,
    FileNotInCache,
    Io(Error),
}

Errors returned by this crate.

Variants

The file was too large to fit in the cache.

The file was not in the cache.

An IO Error occurred.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<Error> for Error
[src]

[src]

Performs the conversion.