[][src]Struct wasmer_runtime_core::vm::Intrinsics

#[repr(C)]
pub struct Intrinsics {
    pub memory_grow: *const Func,
    pub memory_size: *const Func,
}

A container for VM instrinsic functions

Fields

memory_grow: *const Func

Const pointer to memory grow Func.

memory_size: *const Func

Const pointer to memory size Func.

Methods

impl Intrinsics[src]

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

Offset of the memory_grow field.

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

Offset of the memory_size field.

Trait Implementations

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, 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.