pub trait PackedValuewhere
    Self: Copy,
    Self: ShlAssign<usize>,
    Self: BitOrAssign<Self>,
    Self: PartialOrd,
    Self: Debug,
    Self: LowerHex,
{ const NBITS: usize = _; const NCHARS: usize = _; const NTAGBITS: usize = _; const NCHARBITS: usize = _; const NWIDECHARS: usize = _; fn truncating_cast_from(i: usize) -> Self; fn most_significant_byte(self) -> u8; fn arbitrary<'a>(u: &mut Unstructured<'a>) -> Result<Self> { ... } }

Provided Associated Constants

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors