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
Object Safety§
This trait is not object safe.