[][src]Enum rustc_ap_rustc_target::asm::RiscVInlineAsmRegClass

pub enum RiscVInlineAsmRegClass {
    reg,
    freg,
}

Variants

reg
freg

Implementations

impl RiscVInlineAsmRegClass[src]

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

pub fn parse(_arch: InlineAsmArch, name: &str) -> Result<Self, &'static str>[src]

impl RiscVInlineAsmRegClass[src]

pub fn valid_modifiers(self, _arch: InlineAsmArch) -> &'static [char][src]

pub fn suggest_class(
    self,
    _arch: InlineAsmArch,
    _ty: InlineAsmType
) -> Option<Self>
[src]

pub fn suggest_modifier(
    self,
    _arch: InlineAsmArch,
    _ty: InlineAsmType
) -> Option<(char, &'static str)>
[src]

pub fn default_modifier(
    self,
    _arch: InlineAsmArch
) -> Option<(char, &'static str)>
[src]

pub fn supported_types(
    self,
    arch: InlineAsmArch
) -> &'static [(InlineAsmType, Option<&'static str>)]
[src]

Trait Implementations

impl Clone for RiscVInlineAsmRegClass[src]

impl Copy for RiscVInlineAsmRegClass[src]

impl Debug for RiscVInlineAsmRegClass[src]

impl Decodable for RiscVInlineAsmRegClass[src]

impl Encodable for RiscVInlineAsmRegClass[src]

impl Eq for RiscVInlineAsmRegClass[src]

impl Hash for RiscVInlineAsmRegClass[src]

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

impl PartialEq<RiscVInlineAsmRegClass> for RiscVInlineAsmRegClass[src]

impl StructuralEq for RiscVInlineAsmRegClass[src]

impl StructuralPartialEq for RiscVInlineAsmRegClass[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.