pub trait KeyCache {
    // Required method
    fn get_keys(
        &self
    ) -> impl Future<Output = Result<PubKeys, Report<CacheError>>> + Send;
}

Required Methods§

source

fn get_keys( &self ) -> impl Future<Output = Result<PubKeys, Report<CacheError>>> + Send

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<ClientT: CacheClient> KeyCache for HttpCache<ClientT, PubKeys>