pub struct DecodedBlock<Id: EntityId> {
pub zone_map: ZoneMapEntry,
pub entries: Vec<(Id, Value)>,
}Expand description
A decoded compressed block of (id, value) pairs from a property column.
Phase 4’s iterator-bounds operator consumes these after pruning via
per-block zone maps. The entries are sorted by entity id (matching
the underlying compressed layout).
Fields§
§zone_map: ZoneMapEntryPer-block min/max/null/row counts populated when the block was compressed.
entries: Vec<(Id, Value)>(id, value) pairs, sorted by id.
Trait Implementations§
Source§impl<Id: Clone + EntityId> Clone for DecodedBlock<Id>
impl<Id: Clone + EntityId> Clone for DecodedBlock<Id>
Source§fn clone(&self) -> DecodedBlock<Id>
fn clone(&self) -> DecodedBlock<Id>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<Id> Freeze for DecodedBlock<Id>
impl<Id> RefUnwindSafe for DecodedBlock<Id>where
Id: RefUnwindSafe,
impl<Id> Send for DecodedBlock<Id>where
Id: Send,
impl<Id> Sync for DecodedBlock<Id>where
Id: Sync,
impl<Id> Unpin for DecodedBlock<Id>where
Id: Unpin,
impl<Id> UnsafeUnpin for DecodedBlock<Id>
impl<Id> UnwindSafe for DecodedBlock<Id>where
Id: 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,
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