Enum bad64::ArrSpec[][src]

pub enum ArrSpec {
    Full(Option<u32>),
    TwoDoubles(Option<u32>),
    FourSingles(Option<u32>),
    EightHalves(Option<u32>),
    SixteenBytes(Option<u32>),
    OneDouble(Option<u32>),
    TwoSingles(Option<u32>),
    FourHalves(Option<u32>),
    EightBytes(Option<u32>),
    OneSingle(Option<u32>),
    TwoHalves(Option<u32>),
    FourBytes(Option<u32>),
    OneHalf(Option<u32>),
    OneByte(Option<u32>),
}

An arrangement specifier

Variants

Full(Option<u32>)
TwoDoubles(Option<u32>)
FourSingles(Option<u32>)
EightHalves(Option<u32>)
SixteenBytes(Option<u32>)
OneDouble(Option<u32>)
TwoSingles(Option<u32>)
FourHalves(Option<u32>)
EightBytes(Option<u32>)
OneSingle(Option<u32>)
TwoHalves(Option<u32>)
FourBytes(Option<u32>)
OneHalf(Option<u32>)
OneByte(Option<u32>)

Implementations

impl ArrSpec[src]

pub fn lane(&self) -> Option<u32>[src]

pub fn suffix(&self, reg: Reg) -> &'static str[src]

Trait Implementations

impl Clone for ArrSpec[src]

impl Copy for ArrSpec[src]

impl Debug for ArrSpec[src]

impl Eq for ArrSpec[src]

impl Hash for ArrSpec[src]

impl PartialEq<ArrSpec> for ArrSpec[src]

impl StructuralEq for ArrSpec[src]

impl StructuralPartialEq for ArrSpec[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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.