pub enum CIRegister {
FramePointer,
S1,
A0,
A1,
A2,
A3,
A4,
A5,
}Expand description
One of the limited set of registers available in compressed instructions
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CIRegister
impl Clone for CIRegister
Source§fn clone(&self) -> CIRegister
fn clone(&self) -> CIRegister
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CIRegister
Source§impl Debug for CIRegister
impl Debug for CIRegister
Source§impl Display for CIRegister
impl Display for CIRegister
Source§impl From<u16> for CIRegister
impl From<u16> for CIRegister
Source§impl PartialEq for CIRegister
impl PartialEq for CIRegister
Source§fn eq(&self, other: &CIRegister) -> bool
fn eq(&self, other: &CIRegister) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CIRegister
Auto Trait Implementations§
impl Freeze for CIRegister
impl RefUnwindSafe for CIRegister
impl Send for CIRegister
impl Sync for CIRegister
impl Unpin for CIRegister
impl UnsafeUnpin for CIRegister
impl UnwindSafe for CIRegister
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