Trait salvo_core::conn::acme::cache::CacheError

source ·
pub trait CacheError: StdError + Send + Sync + 'static { }
Available on crate feature acme only.
Expand description

An error that can be returned from an AcmeCache.

Implementors§

source§

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