Struct wasmer_vm::VMSharedMemory
source · pub struct VMSharedMemory { /* private fields */ }
Expand description
A shared linear memory instance.
Implementations§
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 Memory
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 Memory
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.
sourcepub fn duplicate(&mut self) -> Result<Self, MemoryError>
pub fn duplicate(&mut self) -> Result<Self, MemoryError>
Copies this memory to a new memory
Trait Implementations§
source§fn clone(&self) -> VMSharedMemory
fn clone(&self) -> VMSharedMemory
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn from(mem: VMSharedMemory) -> Self
fn from(mem: VMSharedMemory) -> Self
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(&mut self, delta: Pages) -> Result<Pages, MemoryError>
fn grow(&mut 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.
source§fn try_clone(&self) -> Option<Box<dyn LinearMemory + 'static>>
fn try_clone(&self) -> Option<Box<dyn LinearMemory + 'static>>
Shared memory can always be cloned
source§fn duplicate(&mut self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
fn duplicate(&mut self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
Copies this memory to a new memory