1 2 3 4 5 6 7 8
/// the order of the bits packed/unpacked #[derive(Copy, Clone, Debug, Ord, PartialOrd, Eq, PartialEq)] pub enum BitOrder { /// standard binary representation Big, /// reversed order Little, }