Enum moa_parsing::AssemblyOperand
source · pub enum AssemblyOperand {
Register(String),
Indirect(Vec<AssemblyOperand>),
IndirectPre(String, Vec<AssemblyOperand>),
IndirectPost(Vec<AssemblyOperand>, String),
Immediate(usize),
Label(String),
}
Variants§
Register(String)
Indirect(Vec<AssemblyOperand>)
IndirectPre(String, Vec<AssemblyOperand>)
IndirectPost(Vec<AssemblyOperand>, String)
Immediate(usize)
Label(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssemblyOperand
impl RefUnwindSafe for AssemblyOperand
impl Send for AssemblyOperand
impl Sync for AssemblyOperand
impl Unpin for AssemblyOperand
impl UnwindSafe for AssemblyOperand
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