Enum walrus::ir::LoadSimdKind[][src]

pub enum LoadSimdKind {
    Splat8,
    Splat16,
    Splat32,
    Splat64,
    V128Load8x8S,
    V128Load8x8U,
    V128Load16x4S,
    V128Load16x4U,
    V128Load32x2S,
    V128Load32x2U,
    V128Load32Zero,
    V128Load64Zero,
    V128Load8Lane(u8),
    V128Load16Lane(u8),
    V128Load32Lane(u8),
    V128Load64Lane(u8),
    V128Store8Lane(u8),
    V128Store16Lane(u8),
    V128Store32Lane(u8),
    V128Store64Lane(u8),
}

The different kinds of load instructions that are part of a LoadSimd IR node

Variants

Splat8
Splat16
Splat32
Splat64
V128Load8x8S
V128Load8x8U
V128Load16x4S
V128Load16x4U
V128Load32x2S
V128Load32x2U
V128Load32Zero
V128Load64Zero
V128Load8Lane(u8)
V128Load16Lane(u8)
V128Load32Lane(u8)
V128Load64Lane(u8)
V128Store8Lane(u8)
V128Store16Lane(u8)
V128Store32Lane(u8)
V128Store64Lane(u8)

Trait Implementations

impl Clone for LoadSimdKind[src]

impl Copy for LoadSimdKind[src]

impl Debug for LoadSimdKind[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.