pub enum RK {
R(u8),
K(u8),
}Expand description
A slot which is either a register (R) or constant (K).
Variants§
Implementations§
Trait Implementations§
impl Copy for RK
impl Eq for RK
Source§impl Ord for RK
impl Ord for RK
1.21.0 (const: unstable) · 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 PartialOrd for RK
impl PartialOrd for RK
impl StructuralPartialEq for RK
Auto Trait Implementations§
impl Freeze for RK
impl RefUnwindSafe for RK
impl Send for RK
impl Sync for RK
impl Unpin for RK
impl UnsafeUnpin for RK
impl UnwindSafe for RK
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