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.
Implementors§
impl MapEntryMut for iroh_blobs::store::mem::Entry
impl MapEntryMut for iroh_blobs::store::readonly_mem::Entry
impl MapEntryMut for iroh_blobs::store::fs::Entry
Available on crate feature
fs-store
only.