pub enum BitfieldBitOrder {
MsbFirst,
LsbFirst,
}Expand description
the bit order of a bitfield.
Variants§
MsbFirst
the bitfield is msb first, which means that the bits of the first field will be placed at the msb.
LsbFirst
the bitfield is lsb first, which means that the bits of the first field will be placed at the lsb.
Auto Trait Implementations§
impl Freeze for BitfieldBitOrder
impl RefUnwindSafe for BitfieldBitOrder
impl Send for BitfieldBitOrder
impl Sync for BitfieldBitOrder
impl Unpin for BitfieldBitOrder
impl UnwindSafe for BitfieldBitOrder
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