pub enum PackReadTier {
Hot,
SolidFrame,
}Expand description
Physical read tier for an indexed pack object.
Hot records have one independently addressable record per logical object. Solid-frame records share one payload across several logical objects and therefore require a frame decompression on a cache-cold read.
Variants§
Hot
Independently addressable, random-access record.
SolidFrame
Compact payload shared by several tree or state ids.
Trait Implementations§
Source§impl Clone for PackReadTier
impl Clone for PackReadTier
Source§fn clone(&self) -> PackReadTier
fn clone(&self) -> PackReadTier
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PackReadTier
Source§impl Debug for PackReadTier
impl Debug for PackReadTier
impl Eq for PackReadTier
Source§impl PartialEq for PackReadTier
impl PartialEq for PackReadTier
impl StructuralPartialEq for PackReadTier
Auto Trait Implementations§
impl Freeze for PackReadTier
impl RefUnwindSafe for PackReadTier
impl Send for PackReadTier
impl Sync for PackReadTier
impl Unpin for PackReadTier
impl UnsafeUnpin for PackReadTier
impl UnwindSafe for PackReadTier
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