#[repr(u8)]pub enum ExtendOp {
UXTB = 0,
UXTH = 1,
UXTW = 2,
UXTX = 3,
SXTB = 4,
SXTH = 5,
SXTW = 6,
SXTX = 7,
}
Available on crate feature
arm64
only.Expand description
An extend operator for a register.
Variants§
UXTB = 0
Unsigned extend byte.
UXTH = 1
Unsigned extend halfword.
UXTW = 2
Unsigned extend word.
UXTX = 3
Unsigned extend doubleword.
SXTB = 4
Signed extend byte.
SXTH = 5
Signed extend halfword.
SXTW = 6
Signed extend word.
SXTX = 7
Signed extend doubleword.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExtendOp
impl RefUnwindSafe for ExtendOp
impl Send for ExtendOp
impl Sync for ExtendOp
impl Unpin for ExtendOp
impl UnwindSafe for ExtendOp
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