pub trait PartialMapEntry<D: PartialMap>: MapEntry<D> {
    // Required methods
    fn outboard_mut(&self) -> BoxFuture<'_, Result<D::OutboardMut>>;
    fn data_writer(&self) -> BoxFuture<'_, Result<D::DataWriter>>;
}
Expand description

A partial entry

Required Methods§

source

fn outboard_mut(&self) -> BoxFuture<'_, Result<D::OutboardMut>>

A future that resolves to an writeable outboard

source

fn data_writer(&self) -> BoxFuture<'_, Result<D::DataWriter>>

A future that resolves to a writer that can be used to write the data

Object Safety§

This trait is not object safe.

Implementors§

source§

impl PartialMapEntry<Store> for iroh_bytes::store::flat::PartialEntry

source§

impl PartialMapEntry<Store> for iroh_bytes::store::mem::PartialEntry

source§

impl PartialMapEntry<Store> for iroh_bytes::store::readonly_mem::PartialEntry