pub struct LinearMemory { /* private fields */ }
Expand description
A linear memory instance.
Implementations§
Source§impl LinearMemory
impl LinearMemory
Sourcepub fn new(
memory: &MemoryType,
style: &MemoryStyle,
) -> Result<Self, MemoryError>
pub fn new( memory: &MemoryType, style: &MemoryStyle, ) -> Result<Self, MemoryError>
Create a new linear memory instance with specified minimum and maximum number of wasm pages.
This creates a LinearMemory
with owned metadata: this can be used to create a memory
that will be imported into Wasm modules.
Sourcepub unsafe fn from_definition(
memory: &MemoryType,
style: &MemoryStyle,
vm_memory_location: NonNull<VMMemoryDefinition>,
) -> Result<Self, MemoryError>
pub unsafe fn from_definition( memory: &MemoryType, style: &MemoryStyle, vm_memory_location: NonNull<VMMemoryDefinition>, ) -> Result<Self, MemoryError>
Create a new linear memory instance with specified minimum and maximum number of wasm pages.
This creates a LinearMemory
with metadata owned by a VM, pointed to by
vm_memory_location
: this can be used to create a local memory.
§Safety
vm_memory_location
must point to a valid location in VM memory.
Trait Implementations§
Source§impl Debug for LinearMemory
impl Debug for LinearMemory
Source§impl Memory for LinearMemory
impl Memory for LinearMemory
Source§fn ty(&self) -> MemoryType
fn ty(&self) -> MemoryType
Returns the type for this memory.
Source§fn style(&self) -> &MemoryStyle
fn style(&self) -> &MemoryStyle
Returns the memory style for this memory.
Source§fn grow(&self, delta: Pages) -> Result<Pages, MemoryError>
fn grow(&self, delta: Pages) -> Result<Pages, MemoryError>
Grow memory by the specified amount of wasm pages.
Returns None
if memory can’t be grown by the specified amount
of wasm pages.
Source§fn vmmemory(&self) -> NonNull<VMMemoryDefinition>
fn vmmemory(&self) -> NonNull<VMMemoryDefinition>
Return a VMMemoryDefinition
for exposing the memory to compiled wasm code.
impl Send for LinearMemory
We must implement this because of VMMemoryDefinitionOwnership::VMOwned
.
This is correct because synchronization of memory accesses is controlled
by the VM.
impl Sync for LinearMemory
This is correct because all internal mutability is protected by a mutex.