#[derive(Debug, Clone, Copy)]
pub struct U6(u8);
impl U6 {
#[inline]
pub const fn from_low_six_bits(x: u8) -> U6 {
U6(x & 0x3f)
}
}
impl Into<usize> for U6 {
#[inline]
fn into(self) -> usize {
<Self as Into<u8>>::into(self).into()
}
}
impl Into<u8> for U6 {
#[inline]
fn into(self) -> u8 {
self.0
}
}