pub struct VMMemory(pub Box<dyn LinearMemory + 'static>);
Expand description
Represents linear memory that can be either owned or shared
Tuple Fields§
§0: Box<dyn LinearMemory + 'static>
Implementations§
source§impl VMMemory
impl VMMemory
sourcepub fn new(memory: &MemoryType, style: &MemoryStyle) -> Result<Self, MemoryError>
pub fn new(memory: &MemoryType, style: &MemoryStyle) -> Result<Self, MemoryError>
Creates a new linear memory instance of the correct type 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 fn get_runtime_size(&self) -> u32
pub fn get_runtime_size(&self) -> u32
Returns the number of pages in the allocated memory block
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 from_custom<IntoVMMemory>(memory: IntoVMMemory) -> VMMemorywhere
IntoVMMemory: Into<VMMemory>,
pub fn from_custom<IntoVMMemory>(memory: IntoVMMemory) -> VMMemorywhere
IntoVMMemory: Into<VMMemory>,
Creates VMMemory from a custom implementation - the following into implementations are natively supported
- VMOwnedMemory -> VMMemory
- Box<dyn LinearMemory + ’static> -> VMMemory
Trait Implementations§
source§impl From<Box<dyn LinearMemory + 'static, Global>> for VMMemory
impl From<Box<dyn LinearMemory + 'static, Global>> for VMMemory
source§fn from(mem: Box<dyn LinearMemory + 'static>) -> Self
fn from(mem: Box<dyn LinearMemory + 'static>) -> Self
source§impl From<VMOwnedMemory> for VMMemory
impl From<VMOwnedMemory> for VMMemory
source§fn from(mem: VMOwnedMemory) -> Self
fn from(mem: VMOwnedMemory) -> Self
source§fn from(mem: VMSharedMemory) -> Self
fn from(mem: VMSharedMemory) -> Self
source§impl LinearMemory for VMMemory
impl LinearMemory for VMMemory
source§fn ty(&self) -> MemoryType
fn ty(&self) -> MemoryType
Returns the type 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 style(&self) -> MemoryStyle
fn style(&self) -> MemoryStyle
Returns the memory style for this memory.
source§fn vmmemory(&self) -> NonNull<VMMemoryDefinition>
fn vmmemory(&self) -> NonNull<VMMemoryDefinition>
Return a VMMemoryDefinition
for exposing the memory to compiled wasm code.