Struct wasm_encoder::MemoryType 
source · pub struct MemoryType {
    pub minimum: u64,
    pub maximum: Option<u64>,
    pub memory64: bool,
    pub shared: bool,
    pub page_size_log2: Option<u32>,
}Expand description
A memory’s type.
Fields§
§minimum: u64Minimum size, in pages, of this memory
maximum: Option<u64>Maximum size, in pages, of this memory
memory64: boolWhether or not this is a 64-bit memory.
Whether or not this memory is shared.
page_size_log2: Option<u32>The log base 2 of a custom page size for this memory.
The default page size for Wasm memories is 64KiB, i.e. 216 or
65536.
After the introduction of the custom-page-sizes proposal, Wasm can customize the page size. It must be a power of two that is less than or equal to 64KiB. Attempting to encode an invalid page size may panic.
Trait Implementations§
source§impl Clone for MemoryType
 
impl Clone for MemoryType
source§fn clone(&self) -> MemoryType
 
fn clone(&self) -> MemoryType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for MemoryType
 
impl Debug for MemoryType
source§impl Encode for MemoryType
 
impl Encode for MemoryType
source§impl From<MemoryType> for EntityType
 
impl From<MemoryType> for EntityType
source§fn from(t: MemoryType) -> Self
 
fn from(t: MemoryType) -> Self
Converts to this type from the input type.
source§impl Hash for MemoryType
 
impl Hash for MemoryType
source§impl PartialEq for MemoryType
 
impl PartialEq for MemoryType
source§fn eq(&self, other: &MemoryType) -> bool
 
fn eq(&self, other: &MemoryType) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for MemoryType
impl Eq for MemoryType
impl StructuralPartialEq for MemoryType
Auto Trait Implementations§
impl Freeze for MemoryType
impl RefUnwindSafe for MemoryType
impl Send for MemoryType
impl Sync for MemoryType
impl Unpin for MemoryType
impl UnwindSafe for MemoryType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more