#[repr(u8)]pub enum Bits {
Bits8 = 0,
Bits16 = 1,
Bits24 = 2,
Bits32 = 3,
Bits48 = 4,
Bits64 = 5,
Bits96 = 6,
Bits128 = 7,
}Expand description
Maximum bit dimension which a register value should fit (used in FieldInstr::Fits
instruction).
Variants§
Bits8 = 0
8 bits (a byte).
Bits16 = 1
16 bits (two bytes).
Bits24 = 2
24 bits (three bytes).
Bits32 = 3
32 bits (four bytes).
Bits48 = 4
48 bits (six bytes).
Bits64 = 5
64 bits (8 bytes).
Bits96 = 6
96 bits (12 bytes).
Bits128 = 7
128 bits (16 bytes).
Implementations§
Trait Implementations§
impl Copy for Bits
impl Eq for Bits
impl StructuralPartialEq for Bits
Auto Trait Implementations§
impl Freeze for Bits
impl RefUnwindSafe for Bits
impl Send for Bits
impl Sync for Bits
impl Unpin for Bits
impl UnwindSafe for Bits
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.