Enum rustc_hir::hir::InlineAsmOperand [−][src]
pub enum InlineAsmOperand<'hir> {
In {
reg: InlineAsmRegOrRegClass,
expr: Expr<'hir>,
},
Out {
reg: InlineAsmRegOrRegClass,
late: bool,
expr: Option<Expr<'hir>>,
},
InOut {
reg: InlineAsmRegOrRegClass,
late: bool,
expr: Expr<'hir>,
},
SplitInOut {
reg: InlineAsmRegOrRegClass,
late: bool,
in_expr: Expr<'hir>,
out_expr: Option<Expr<'hir>>,
},
Const {
anon_const: AnonConst,
},
Sym {
expr: Expr<'hir>,
},
}
Variants
Fields of In
reg: InlineAsmRegOrRegClass
expr: Expr<'hir>
Fields of Out
Fields of InOut
Fields of SplitInOut
Fields of Const
anon_const: AnonConst
Fields of Sym
expr: Expr<'hir>
Implementations
Trait Implementations
Auto Trait Implementations
impl<'hir> !RefUnwindSafe for InlineAsmOperand<'hir>
impl<'hir> !Send for InlineAsmOperand<'hir>
impl<'hir> !Sync for InlineAsmOperand<'hir>
impl<'hir> Unpin for InlineAsmOperand<'hir>
impl<'hir> !UnwindSafe for InlineAsmOperand<'hir>
Blanket Implementations
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 136 bytes
Size for each variant:
In
: 71 bytesOut
: 71 bytesInOut
: 71 bytesSplitInOut
: 135 bytesConst
: 19 bytesSym
: 71 bytes