#[repr(u8)]pub enum Tier {
Tier0 = 0,
Tier1 = 1,
Tier2 = 2,
Tier3 = 3,
}Expand description
Storage tier for a block.
Variants§
Tier0 = 0
In-memory / uncompressed (full f32).
Tier1 = 1
Hot: 8-bit quantization.
Tier2 = 2
Warm: 7-bit (or 5-bit aggressive) quantization.
Tier3 = 3
Cold: 3-bit quantization.
Trait Implementations§
Source§impl Ord for Tier
impl Ord for Tier
Source§impl PartialOrd for Tier
impl PartialOrd for Tier
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