pub enum Syntax {
Intel,
Att,
Ual,
RiscV,
}Expand description
Assembly syntax dialect.
Variants§
Intel
Intel / NASM style: mov rax, 1
Att
AT&T / GAS style: movq $1, %rax
Ual
ARM Unified Assembly Language.
RiscV
RISC-V standard syntax.
Trait Implementations§
impl Copy for Syntax
impl Eq for Syntax
impl StructuralPartialEq for Syntax
Auto Trait Implementations§
impl Freeze for Syntax
impl RefUnwindSafe for Syntax
impl Send for Syntax
impl Sync for Syntax
impl Unpin for Syntax
impl UnwindSafe for Syntax
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