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) -> Selfwhere
IntoVMMemory: Into<Self>,
pub fn from_custom<IntoVMMemory>(memory: IntoVMMemory) -> Selfwhere
IntoVMMemory: Into<Self>,
Creates VMMemory from a custom implementation - the following into implementations are natively supported
- VMOwnedMemory -> VMMemory
- Box<dyn LinearMemory + ’static> -> VMMemory
Sourcepub fn copy(&mut self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
pub fn copy(&mut self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
Copies this memory to a new memory
Trait Implementations§
Source§impl From<Box<dyn LinearMemory>> for VMMemory
impl From<Box<dyn LinearMemory>> 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 grow_at_least(&mut self, min_size: u64) -> Result<(), MemoryError>
fn grow_at_least(&mut self, min_size: u64) -> Result<(), MemoryError>
Grows the memory to at least a minimum size. If the memory is already big enough for the min size then this function does nothing
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.
Source§fn try_clone(&self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
fn try_clone(&self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
Attempts to clone this memory (if its clonable)
Source§fn copy(&mut self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
fn copy(&mut self) -> Result<Box<dyn LinearMemory + 'static>, MemoryError>
Copies this memory to a new memory
Source§fn do_notify(&mut self, dst: NotifyLocation, count: u32) -> u32
fn do_notify(&mut self, dst: NotifyLocation, count: u32) -> u32
Notify waiters from the wait list. Return the number of waiters notified
Source§fn do_wait(
&mut self,
dst: NotifyLocation,
timeout: Option<Duration>,
) -> Result<u32, WaiterError>
fn do_wait( &mut self, dst: NotifyLocation, timeout: Option<Duration>, ) -> Result<u32, WaiterError>
Source§fn thread_conditions(&self) -> Option<&ThreadConditions>
fn thread_conditions(&self) -> Option<&ThreadConditions>
Auto Trait Implementations§
impl Freeze for VMMemory
impl !RefUnwindSafe for VMMemory
impl Send for VMMemory
impl !Sync for VMMemory
impl Unpin for VMMemory
impl !UnwindSafe for VMMemory
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out
indicating that a T
is niched.