ppv_lite86

Trait Machine

Source
pub trait Machine: Sized + Copy {
    type u32x4: u32x4<Self>;
    type u64x2: u64x2<Self>;
    type u128x1: u128x1<Self>;
    type u32x4x2: u32x4x2<Self>;
    type u64x2x2: u64x2x2<Self>;
    type u64x4: u64x4<Self>;
    type u128x2: u128x2<Self>;
    type u32x4x4: u32x4x4<Self>;
    type u64x2x4: u64x2x4<Self>;
    type u128x4: u128x4<Self>;

    // Required method
    unsafe fn instance() -> Self;

    // Provided methods
    fn unpack<S, V: Store<S>>(self, s: S) -> V { ... }
    fn vec<V, A>(self, a: A) -> V
       where V: MultiLane<A> { ... }
    fn read_le<V>(self, input: &[u8]) -> V
       where V: StoreBytes { ... }
    fn read_be<V>(self, input: &[u8]) -> V
       where V: StoreBytes { ... }
}

Required Associated Types§

Source

type u32x4: u32x4<Self>

Source

type u64x2: u64x2<Self>

Source

type u128x1: u128x1<Self>

Source

type u32x4x2: u32x4x2<Self>

Source

type u64x2x2: u64x2x2<Self>

Source

type u64x4: u64x4<Self>

Source

type u128x2: u128x2<Self>

Source

type u32x4x4: u32x4x4<Self>

Source

type u64x2x4: u64x2x4<Self>

Source

type u128x4: u128x4<Self>

Required Methods§

Source

unsafe fn instance() -> Self

§Safety

Caller must ensure the type of Self is appropriate for the hardware of the execution environment.

Provided Methods§

Source

fn unpack<S, V: Store<S>>(self, s: S) -> V

Source

fn vec<V, A>(self, a: A) -> V
where V: MultiLane<A>,

Source

fn read_le<V>(self, input: &[u8]) -> V
where V: StoreBytes,

Source

fn read_be<V>(self, input: &[u8]) -> V
where V: StoreBytes,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§