[][src]Struct wasmtime_environ::MemoryPlan

pub struct MemoryPlan {
    pub memory: Memory,
    pub style: MemoryStyle,
    pub offset_guard_size: u64,
}

A WebAssembly linear memory description along with our chosen style for implementing it.

Fields

memory: Memory

The WebAssembly linear memory description.

style: MemoryStyle

Our chosen implementation style.

offset_guard_size: u64

Our chosen offset-guard size.

Methods

impl MemoryPlan[src]

pub fn for_memory(memory: Memory, tunables: &Tunables) -> Self[src]

Draw up a plan for implementing a Memory.

Trait Implementations

impl Clone for MemoryPlan[src]

impl Debug for MemoryPlan[src]

impl Hash for MemoryPlan[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.