pub enum BitPacking {
LowFirstU32,
}Expand description
Placement of quantized codes within addressable storage words.
Variants§
LowFirstU32
Consecutive codes occupy a U32 word from least to most significant bits.
Trait Implementations§
Source§impl Clone for BitPacking
impl Clone for BitPacking
Source§fn clone(&self) -> BitPacking
fn clone(&self) -> BitPacking
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 BitPacking
Source§impl Debug for BitPacking
impl Debug for BitPacking
Source§impl<'de> Deserialize<'de> for BitPacking
impl<'de> Deserialize<'de> for BitPacking
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BitPacking
impl RefUnwindSafe for BitPacking
impl Send for BitPacking
impl Sync for BitPacking
impl Unpin for BitPacking
impl UnsafeUnpin for BitPacking
impl UnwindSafe for BitPacking
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