Struct syntax::ast::InlineAsmUnstable [-] [+] [src]

pub struct InlineAsm {
    pub asm: InternedString,
    pub asm_str_style: StrStyle,
    pub outputs: Vec<(InternedString, P<Expr>, bool)>,
    pub inputs: Vec<(InternedString, P<Expr>)>,
    pub clobbers: Vec<InternedString>,
    pub volatile: bool,
    pub alignstack: bool,
    pub dialect: AsmDialect,
    pub expn_id: ExpnId,
}

Fields

asm
asm_str_style
outputs
inputs
clobbers
volatile
alignstack
dialect
expn_id

Trait Implementations

Derived Implementations

impl Debug for InlineAsm

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Hash for InlineAsm

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Decodable for InlineAsm

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<InlineAsm, Error>

impl Encodable for InlineAsm

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), Error>

impl Eq for InlineAsm

fn assert_receiver_is_total_eq(&self)

impl PartialEq for InlineAsm

fn eq(&self, __arg_0: &InlineAsm) -> bool

fn ne(&self, __arg_0: &InlineAsm) -> bool

impl Clone for InlineAsm

fn clone(&self) -> InlineAsm

fn clone_from(&mut self, source: &Self)