[][src]Enum rustc_ap_rustc_target::asm::InlineAsmReg

pub enum InlineAsmReg {
    X86(X86InlineAsmReg),
    Arm(ArmInlineAsmReg),
    AArch64(AArch64InlineAsmReg),
    RiscV(RiscVInlineAsmReg),
    Nvptx(NvptxInlineAsmReg),
    Hexagon(HexagonInlineAsmReg),
}

Variants

Implementations

impl InlineAsmReg[src]

pub fn name(self) -> &'static str[src]

pub fn reg_class(self) -> InlineAsmRegClass[src]

pub fn parse(
    arch: InlineAsmArch,
    has_feature: impl FnMut(&str) -> bool,
    name: Symbol
) -> Result<Self, &'static str>
[src]

pub fn emit(
    self,
    out: &mut dyn Write,
    arch: InlineAsmArch,
    modifier: Option<char>
) -> Result
[src]

pub fn overlapping_regs(self, cb: impl FnMut(InlineAsmReg))[src]

Trait Implementations

impl Clone for InlineAsmReg[src]

impl Copy for InlineAsmReg[src]

impl Debug for InlineAsmReg[src]

impl Decodable for InlineAsmReg[src]

impl Encodable for InlineAsmReg[src]

impl Eq for InlineAsmReg[src]

impl Hash for InlineAsmReg[src]

impl<__CTX> HashStable<__CTX> for InlineAsmReg where
    __CTX: HashStableContext
[src]

impl PartialEq<InlineAsmReg> for InlineAsmReg[src]

impl StructuralEq for InlineAsmReg[src]

impl StructuralPartialEq for InlineAsmReg[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeResult<T> for T[src]

type Error = !

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<E> SpecializationError for E[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.