Skip to main content

CacheError

Trait CacheError 

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

An error that can be returned from an AcmeCache.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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