#[repr(u8)]pub enum Tier {
Tier0 = 0,
Tier1 = 1,
Tier2 = 2,
Tier3 = 3,
}Expand description
Storage tier for a block.
Tiers form a hierarchy from hot (high fidelity, fast access) to evicted (metadata-only, zero payload bytes).
Variants§
Tier0 = 0
Evicted: compressed to zero bits, only metadata remains.
Tier1 = 1
Hot: 8-bit quantization, full fidelity.
Tier2 = 2
Warm: 7-bit quantization.
Tier3 = 3
Cold: 3-bit quantization.
Trait Implementations§
impl Copy for Tier
impl Eq for Tier
impl StructuralPartialEq for Tier
Auto Trait Implementations§
impl Freeze for Tier
impl RefUnwindSafe for Tier
impl Send for Tier
impl Sync for Tier
impl Unpin for Tier
impl UnsafeUnpin for Tier
impl UnwindSafe for Tier
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