pub enum Ins {
Arm(Ins),
Thumb(Ins),
Data,
}Variants§
Implementations§
Source§impl Ins
impl Ins
pub fn code(&self) -> u32
pub fn is_illegal(&self) -> bool
pub fn updates_condition_flags(&self) -> bool
pub fn is_conditional(&self) -> bool
pub fn mnemonic(self) -> &'static str
pub fn loads_multiple(&self) -> bool
pub fn register_list(&self) -> RegList
pub fn register_list_pc(&self) -> RegList
pub fn is_data_operation(&self) -> bool
Trait Implementations§
impl Copy for Ins
impl Eq for Ins
impl StructuralPartialEq for Ins
Auto Trait Implementations§
impl Freeze for Ins
impl RefUnwindSafe for Ins
impl Send for Ins
impl Sync for Ins
impl Unpin for Ins
impl UnwindSafe for Ins
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