pub enum LoongArch64Instruction {
Shift5,
Shift10,
Branch21,
Branch26,
Call30,
Call36,
}Variants§
Implementations§
Source§impl LoongArch64Instruction
impl LoongArch64Instruction
pub fn write_to_value( self, extracted_value: u64, _negative: bool, dest: &mut [u8], )
pub fn read_value(self, bytes: &[u8]) -> (u64, bool)
Trait Implementations§
Source§impl Clone for LoongArch64Instruction
impl Clone for LoongArch64Instruction
Source§fn clone(&self) -> LoongArch64Instruction
fn clone(&self) -> LoongArch64Instruction
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 moreSource§impl Debug for LoongArch64Instruction
impl Debug for LoongArch64Instruction
Source§impl PartialEq for LoongArch64Instruction
impl PartialEq for LoongArch64Instruction
Source§fn eq(&self, other: &LoongArch64Instruction) -> bool
fn eq(&self, other: &LoongArch64Instruction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LoongArch64Instruction
impl Eq for LoongArch64Instruction
impl StructuralPartialEq for LoongArch64Instruction
Auto Trait Implementations§
impl Freeze for LoongArch64Instruction
impl RefUnwindSafe for LoongArch64Instruction
impl Send for LoongArch64Instruction
impl Sync for LoongArch64Instruction
impl Unpin for LoongArch64Instruction
impl UnsafeUnpin for LoongArch64Instruction
impl UnwindSafe for LoongArch64Instruction
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