pub trait MessageCacheFetch: Sync + Send {
// Required method
fn get_cached_messages(
&self,
account_id: u32,
) -> impl Future<Output = Result<Arc<MessageStoreCache>>> + Send;
}Required Methods§
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.