Skip to main content

MessageCacheFetch

Trait MessageCacheFetch 

Source
pub trait MessageCacheFetch: Sync + Send {
    // Required method
    fn get_cached_messages(
        &self,
        account_id: u32,
    ) -> impl Future<Output = Result<Arc<MessageStoreCache>>> + Send;
}

Required Methods§

Source

fn get_cached_messages( &self, account_id: u32, ) -> impl Future<Output = Result<Arc<MessageStoreCache>>> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§