pub enum ExtendKind {
Uxtb,
Uxth,
Uxtw,
Uxtx,
Sxtb,
Sxth,
Sxtw,
Sxtx,
}Expand description
Extend kind.
Variants§
Uxtb
Unsigned extend byte.
Uxth
Unsigned extend half-word.
Uxtw
Unsigned extend word.
Uxtx
Unsigned extend xword.
Sxtb
Signed extend byte.
Sxth
Signed extend half-word.
Sxtw
Signed extend word.
Sxtx
Signed extend xword.
Trait Implementations§
Source§impl Clone for ExtendKind
impl Clone for ExtendKind
Source§fn clone(&self) -> ExtendKind
fn clone(&self) -> ExtendKind
Returns a duplicate 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 ExtendKind
impl Debug for ExtendKind
Source§impl PartialEq for ExtendKind
impl PartialEq for ExtendKind
impl Copy for ExtendKind
impl Eq for ExtendKind
impl StructuralPartialEq for ExtendKind
Auto Trait Implementations§
impl Freeze for ExtendKind
impl RefUnwindSafe for ExtendKind
impl Send for ExtendKind
impl Sync for ExtendKind
impl Unpin for ExtendKind
impl UnsafeUnpin for ExtendKind
impl UnwindSafe for ExtendKind
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