pub trait MapEntryMut: MapEntry {
// Required method
fn batch_writer(
&self,
) -> impl Future<Output = Result<impl BaoBatchWriter>> + Send;
}
Expand description
A partial entry
Required Methods§
sourcefn batch_writer(
&self,
) -> impl Future<Output = Result<impl BaoBatchWriter>> + Send
fn batch_writer( &self, ) -> impl Future<Output = Result<impl BaoBatchWriter>> + Send
Get a batch writer
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.