#[repr(align(4))]pub struct InstructionCode(pub [u8; 4]);Expand description
ARM64 instruction with proper byte order and alignment.
Tuple Fields§
§0: [u8; 4]Implementations§
Trait Implementations§
Source§impl Clone for InstructionCode
impl Clone for InstructionCode
Source§fn clone(&self) -> InstructionCode
fn clone(&self) -> InstructionCode
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 InstructionCode
impl Debug for InstructionCode
Source§impl FromHex for InstructionCode
impl FromHex for InstructionCode
Source§impl Hash for InstructionCode
impl Hash for InstructionCode
Source§impl PartialEq for InstructionCode
impl PartialEq for InstructionCode
Source§impl ToHex for InstructionCode
impl ToHex for InstructionCode
Source§fn encode_hex<T: FromIterator<char>>(&self) -> T
fn encode_hex<T: FromIterator<char>>(&self) -> T
Encode the hex strict representing
self into the result. Lower case
letters are used (e.g. f9b4ca)Source§fn encode_hex_upper<T: FromIterator<char>>(&self) -> T
fn encode_hex_upper<T: FromIterator<char>>(&self) -> T
Encode the hex strict representing
self into the result. Upper case
letters are used (e.g. F9B4CA)impl Copy for InstructionCode
impl Eq for InstructionCode
impl StructuralPartialEq for InstructionCode
Auto Trait Implementations§
impl Freeze for InstructionCode
impl RefUnwindSafe for InstructionCode
impl Send for InstructionCode
impl Sync for InstructionCode
impl Unpin for InstructionCode
impl UnwindSafe for InstructionCode
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