Struct iroh_bytes::store::mem::PartialEntry
source · pub struct PartialEntry { /* private fields */ }Trait Implementations§
source§impl Clone for PartialEntry
impl Clone for PartialEntry
source§fn clone(&self) -> PartialEntry
fn clone(&self) -> PartialEntry
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PartialEntry
impl Debug for PartialEntry
source§impl MapEntry<Store> for PartialEntry
impl MapEntry<Store> for PartialEntry
source§fn available_ranges(&self) -> BoxFuture<'_, Result<ChunkRanges>>
fn available_ranges(&self) -> BoxFuture<'_, Result<ChunkRanges>>
Compute the available ranges. Read more
source§fn outboard(&self) -> BoxFuture<'_, Result<PreOrderOutboard<MemFile>>>
fn outboard(&self) -> BoxFuture<'_, Result<PreOrderOutboard<MemFile>>>
A future that resolves to a reader that can be used to read the outboard
source§fn data_reader(&self) -> BoxFuture<'_, Result<MemFile>>
fn data_reader(&self) -> BoxFuture<'_, Result<MemFile>>
A future that resolves to a reader that can be used to read the data
source§fn is_complete(&self) -> bool
fn is_complete(&self) -> bool
Returns
true if the entry is complete. Read moresource§impl PartialMapEntry<Store> for PartialEntry
impl PartialMapEntry<Store> for PartialEntry
source§fn outboard_mut(
&self
) -> BoxFuture<'_, Result<PreOrderOutboard<MutableMemFile>>>
fn outboard_mut( &self ) -> BoxFuture<'_, Result<PreOrderOutboard<MutableMemFile>>>
A future that resolves to an writeable outboard
source§fn data_writer(&self) -> BoxFuture<'_, Result<MutableMemFile>>
fn data_writer(&self) -> BoxFuture<'_, Result<MutableMemFile>>
A future that resolves to a writer that can be used to write the data
Auto Trait Implementations§
impl RefUnwindSafe for PartialEntry
impl Send for PartialEntry
impl Sync for PartialEntry
impl Unpin for PartialEntry
impl UnwindSafe for PartialEntry
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more