pub struct L12Rank(/* private fields */);Expand description
L12Rank represents l1 and l2 bit ranks stored inside 16 bytes (little endian).
NB: it’s important to use [u8; 16] instead of u128 for rkyv versions 0.7.X
because of alignment differences between x86_64 and aarch64 architectures.
See https://github.com/rkyv/rkyv/issues/409 for more details.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for L12Rank
impl RefUnwindSafe for L12Rank
impl Send for L12Rank
impl Sync for L12Rank
impl Unpin for L12Rank
impl UnwindSafe for L12Rank
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