#[repr(u32)]pub enum sh_op_mem_type {
SH_OP_MEM_INVALID = 0,
SH_OP_MEM_REG_IND = 1,
SH_OP_MEM_REG_POST = 2,
SH_OP_MEM_REG_PRE = 3,
SH_OP_MEM_REG_DISP = 4,
SH_OP_MEM_REG_R0 = 5,
SH_OP_MEM_GBR_DISP = 6,
SH_OP_MEM_GBR_R0 = 7,
SH_OP_MEM_PCR = 8,
SH_OP_MEM_TBR_DISP = 9,
}Variants§
SH_OP_MEM_INVALID = 0
SH_OP_MEM_REG_IND = 1
<= Invalid
SH_OP_MEM_REG_POST = 2
<= Register indirect
SH_OP_MEM_REG_PRE = 3
<= Register post increment
SH_OP_MEM_REG_DISP = 4
<= Register pre decrement
SH_OP_MEM_REG_R0 = 5
<= displacement
SH_OP_MEM_GBR_DISP = 6
<= R0 indexed
SH_OP_MEM_GBR_R0 = 7
<= GBR based displacement
SH_OP_MEM_PCR = 8
<= GBR based R0 indexed
SH_OP_MEM_TBR_DISP = 9
<= PC relative
Trait Implementations§
Source§impl Clone for sh_op_mem_type
impl Clone for sh_op_mem_type
Source§fn clone(&self) -> sh_op_mem_type
fn clone(&self) -> sh_op_mem_type
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 sh_op_mem_type
impl Debug for sh_op_mem_type
Source§impl Hash for sh_op_mem_type
impl Hash for sh_op_mem_type
Source§impl PartialEq for sh_op_mem_type
impl PartialEq for sh_op_mem_type
impl Copy for sh_op_mem_type
impl Eq for sh_op_mem_type
impl StructuralPartialEq for sh_op_mem_type
Auto Trait Implementations§
impl Freeze for sh_op_mem_type
impl RefUnwindSafe for sh_op_mem_type
impl Send for sh_op_mem_type
impl Sync for sh_op_mem_type
impl Unpin for sh_op_mem_type
impl UnwindSafe for sh_op_mem_type
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