Struct syntax::ast::InlineAsm[][src]

pub struct InlineAsm {
    pub asm: Symbol,
    pub asm_str_style: StrStyle,
    pub outputs: Vec<InlineAsmOutput>,
    pub inputs: Vec<(Symbol, P<Expr>)>,
    pub clobbers: Vec<Symbol>,
    pub volatile: bool,
    pub alignstack: bool,
    pub dialect: AsmDialect,
    pub ctxt: SyntaxContext,
}

Inline assembly.

E.g. asm!("NOP");

Fields

Trait Implementations

impl Clone for InlineAsm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InlineAsm
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for InlineAsm
[src]

impl Encodable for InlineAsm
[src]

impl Decodable for InlineAsm
[src]

impl Hash for InlineAsm
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for InlineAsm
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for InlineAsm

impl !Sync for InlineAsm