pub enum SuperHRegister {
Show 16 variants
R0 = 0,
R1 = 1,
R2 = 2,
R3 = 3,
R4 = 4,
R5 = 5,
R6 = 6,
R7 = 7,
R8 = 8,
R9 = 9,
R10 = 10,
R11 = 11,
R12 = 12,
R13 = 13,
R14 = 14,
R15 = 15,
}Expand description
R*
Variants§
R0 = 0
R1 = 1
R2 = 2
R3 = 3
R4 = 4
R5 = 5
R6 = 6
R7 = 7
R8 = 8
R9 = 9
R10 = 10
R11 = 11
R12 = 12
R13 = 13
R14 = 14
R15 = 15
Trait Implementations§
Source§impl Clone for SuperHRegister
impl Clone for SuperHRegister
Source§fn clone(&self) -> SuperHRegister
fn clone(&self) -> SuperHRegister
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SuperHRegister
impl Debug for SuperHRegister
§impl Display for SuperHRegister
impl Display for SuperHRegister
Source§impl Hash for SuperHRegister
impl Hash for SuperHRegister
Source§impl Ord for SuperHRegister
impl Ord for SuperHRegister
Source§fn cmp(&self, other: &SuperHRegister) -> Ordering
fn cmp(&self, other: &SuperHRegister) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SuperHRegister
impl PartialEq for SuperHRegister
Source§impl PartialOrd for SuperHRegister
impl PartialOrd for SuperHRegister
§impl TryFrom<u8> for SuperHRegister
impl TryFrom<u8> for SuperHRegister
impl Copy for SuperHRegister
impl Eq for SuperHRegister
impl StructuralPartialEq for SuperHRegister
Auto Trait Implementations§
impl Freeze for SuperHRegister
impl RefUnwindSafe for SuperHRegister
impl Send for SuperHRegister
impl Sync for SuperHRegister
impl Unpin for SuperHRegister
impl UnwindSafe for SuperHRegister
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