#[repr(u8)]pub enum RegA {
AP = 0,
A8 = 1,
A16 = 2,
A32 = 3,
A64 = 4,
A128 = 5,
A256 = 6,
A512 = 7,
}Expand description
Enumeration of the a set of registers (arithmetic registers)
Variants§
AP = 0
Arbitrary-precision register
A8 = 1
8-bit arithmetics register
A16 = 2
16-bit arithmetics register
A32 = 3
32-bit arithmetics register
A64 = 4
64-bit arithmetics register
A128 = 5
128-bit arithmetics register
A256 = 6
256-bit arithmetics register
A512 = 7
512-bit arithmetics register
Implementations§
Trait Implementations§
Source§impl Ord for RegA
impl Ord for RegA
Source§impl PartialOrd for RegA
impl PartialOrd for RegA
impl Copy for RegA
impl Eq for RegA
impl StructuralPartialEq for RegA
Auto Trait Implementations§
impl Freeze for RegA
impl RefUnwindSafe for RegA
impl Send for RegA
impl Sync for RegA
impl Unpin for RegA
impl UnwindSafe for RegA
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