[][src]Struct wasmer_runtime_core_asml_fork::vm::LocalGlobal

#[repr(C)]pub struct LocalGlobal {
    pub data: u128,
}

Definition of a global used by the VM.

Fields

data: u128

Data.

Implementations

impl LocalGlobal[src]

pub const fn offset_data() -> u8[src]

Offset to the data field.

pub const fn null() -> Self[src]

A null LocalGlobal.

pub const fn size() -> u8[src]

Size of a LocalGlobal.

Trait Implementations

impl Clone for LocalGlobal[src]

impl Copy for LocalGlobal[src]

impl Debug for LocalGlobal[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> Same<T> for T

type Output = T

Should always be Self

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.