Struct cretonne_wasm::Memory[][src]

pub struct Memory {
    pub pages_count: usize,
    pub maximum: Option<usize>,
    pub shared: bool,
}

WebAssembly linear memory.

Fields

The minimum number of pages in the memory.

The maximum number of pages in the memory.

Whether the memory may be shared between multiple threads.

Trait Implementations

impl Debug for Memory
[src]

Formats the value using the given formatter. Read more

impl Clone for Memory
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Memory
[src]

Auto Trait Implementations

impl Send for Memory

impl Sync for Memory