pub trait AsyncOrderedStoreRead: AsyncStoreRead<Key: Ord> {
// Required method
fn last(&self) -> impl Future<Output = Option<(Self::Key, Self::Value)>>;
}Expand description
Async version of OrderedStore
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".