Struct wasmer_types::V128[][src]

pub struct V128(_);

The WebAssembly V128 type

Implementations

impl V128[src]

pub fn bytes(&self) -> &[u8; 16][src]

Get the bytes corresponding to the V128 value

pub fn iter(&self) -> impl Iterator<Item = &u8>[src]

Iterate over the bytes in the constant.

pub fn to_vec(self) -> Vec<u8>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

Convert the immediate into a vector.

pub fn as_slice(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Convert the immediate into a slice.

Trait Implementations

impl Clone for V128[src]

impl Copy for V128[src]

impl Debug for V128[src]

impl<'de> Deserialize<'de> for V128[src]

impl Eq for V128[src]

impl From<&'_ [u8]> for V128[src]

impl From<[u8; 16]> for V128[src]

impl Hash for V128[src]

impl PartialEq<V128> for V128[src]

impl Serialize for V128[src]

impl StructuralEq for V128[src]

impl StructuralPartialEq for V128[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.