[][src]Struct wasmer_runtime_core_fl::vm::LocalMemory

#[repr(C)]pub struct LocalMemory {
    pub base: *mut u8,
    pub bound: usize,
    pub memory: *mut (),
}

Definition of a memory used by the VM.

Fields

base: *mut u8

Pointer to the bottom of this linear memory.

bound: usize

Current size of this linear memory in bytes.

memory: *mut ()

The actual memory that this represents. This is either *mut DynamicMemory, *mut StaticMemory, or *mut SharedStaticMemory.

Implementations

impl LocalMemory[src]

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

Offset to the base field.

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

Offset to the bound field.

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

Size of a LocalMemory.

Trait Implementations

impl Clone for LocalMemory[src]

impl Copy for LocalMemory[src]

impl Debug for LocalMemory[src]

impl Send for LocalMemory[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.