#[repr(u8)]pub enum Reg8 {
Reg1 = 0,
Reg2 = 1,
Reg3 = 2,
Reg4 = 3,
Reg5 = 4,
Reg6 = 5,
Reg7 = 6,
Reg8 = 7,
}Expand description
Short version of register indexes for a and r register sets covering
initial 8 registers only
Variants§
Reg1 = 0
Register with index [1]
Reg2 = 1
Register with index [2]
Reg3 = 2
Register with index [3]
Reg4 = 3
Register with index [4]
Reg5 = 4
Register with index [5]
Reg6 = 5
Register with index [6]
Reg7 = 6
Register with index [7]
Reg8 = 7
Register with index [8]
Trait Implementations§
Source§impl Ord for Reg8
impl Ord for Reg8
Source§impl PartialOrd for Reg8
impl PartialOrd for Reg8
impl Copy for Reg8
impl Eq for Reg8
impl StructuralPartialEq for Reg8
Auto Trait Implementations§
impl Freeze for Reg8
impl RefUnwindSafe for Reg8
impl Send for Reg8
impl Sync for Reg8
impl Unpin for Reg8
impl UnwindSafe for Reg8
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