Struct syntex_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 expn_id: ExpnId,
}

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]

Serialize a value using an Encoder.

impl Decodable for InlineAsm
[src]

Deserialize a value using a Decoder.

impl Hash for InlineAsm
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Debug for InlineAsm
[src]

Formats the value using the given formatter.