pub trait OrderedStoreRead: StoreRead<Key: Ord> {
// Required method
fn last(&self) -> Option<(Self::Key, Self::Value)>;
}Expand description
Extension to regular Stores, which have ordered keys
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".