pub enum AddrMode {
Offset,
PreIndex,
PostIndex,
}Expand description
Addressing mode for ARM/AArch64 load/store instructions.
Variants§
Offset
Regular offset: [Rn, #imm]
PreIndex
Pre-index with writeback: [Rn, #imm]!
PostIndex
Post-index with writeback: [Rn], #imm
Trait Implementations§
impl Copy for AddrMode
impl Eq for AddrMode
impl StructuralPartialEq for AddrMode
Auto Trait Implementations§
impl Freeze for AddrMode
impl RefUnwindSafe for AddrMode
impl Send for AddrMode
impl Sync for AddrMode
impl Unpin for AddrMode
impl UnwindSafe for AddrMode
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