pub struct RawChunk<Item, Gap> {
pub content: ChunkContent<Item, Gap>,
pub previous: Option<ChunkIdentifier>,
pub identifier: ChunkIdentifier,
pub next: Option<ChunkIdentifier>,
}
Expand description
The raw representation of a linked chunk, as persisted in storage.
It may rebuilt into Chunk
and shares the same internal representation,
except that links are materialized using ChunkIdentifier
instead of raw
pointers to the previous and next chunks.
Fields§
§content: ChunkContent<Item, Gap>
Content section of the linked chunk.
previous: Option<ChunkIdentifier>
Link to the previous chunk, via its identifier.
identifier: ChunkIdentifier
Current chunk’s identifier.
next: Option<ChunkIdentifier>
Link to the next chunk, via its identifier.
Trait Implementations§
Auto Trait Implementations§
impl<Item, Gap> Freeze for RawChunk<Item, Gap>where
Gap: Freeze,
impl<Item, Gap> RefUnwindSafe for RawChunk<Item, Gap>where
Gap: RefUnwindSafe,
Item: RefUnwindSafe,
impl<Item, Gap> Send for RawChunk<Item, Gap>
impl<Item, Gap> Sync for RawChunk<Item, Gap>
impl<Item, Gap> Unpin for RawChunk<Item, Gap>
impl<Item, Gap> UnwindSafe for RawChunk<Item, Gap>where
Gap: UnwindSafe,
Item: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more