[][src]Enum rustc_ap_rustc_target::asm::InlineAsmType

pub enum InlineAsmType {
    I8,
    I16,
    I32,
    I64,
    I128,
    F32,
    F64,
    VecI8(u64),
    VecI16(u64),
    VecI32(u64),
    VecI64(u64),
    VecI128(u64),
    VecF32(u64),
    VecF64(u64),
}

Set of types which can be used with a particular register class.

Variants

I8
I16
I32
I64
I128
F32
F64
VecI8(u64)
VecI16(u64)
VecI32(u64)
VecI64(u64)
VecI128(u64)
VecF32(u64)
VecF64(u64)

Implementations

impl InlineAsmType[src]

pub fn is_integer(self) -> bool[src]

pub fn size(self) -> Size[src]

Trait Implementations

impl Clone for InlineAsmType[src]

impl Copy for InlineAsmType[src]

impl Debug for InlineAsmType[src]

impl Display for InlineAsmType[src]

impl Eq for InlineAsmType[src]

impl PartialEq<InlineAsmType> for InlineAsmType[src]

impl StructuralEq for InlineAsmType[src]

impl StructuralPartialEq for InlineAsmType[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<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> ToString for T where
    T: Display + ?Sized
[src]

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.