Trait CacheError

Source
pub trait CacheError:
    Error
    + Send
    + Sync
    + 'static { }
Expand description

An error that can be returned from an AcmeCache.

Implementors§

Source§

impl<T> CacheError for T
where T: Error + Send + Sync + 'static,