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