pub struct Memory {
pub ty: MemoryType,
/* private fields */
}
Expand description
Represents a memory. Local or Imported depends on the MemKind
.
Fields§
§ty: MemoryType
Implementations§
Source§impl Memory
impl Memory
Sourcepub fn unwrap_local(&self) -> &LocalMemory
pub fn unwrap_local(&self) -> &LocalMemory
Unwrap a local memory. If it is an imported memory, it panics.
Sourcepub fn unwrap_local_mut(&mut self) -> &mut LocalMemory
pub fn unwrap_local_mut(&mut self) -> &mut LocalMemory
Unwrap a local memory as mutable. If it is an imported memory, it panics.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Memory
impl RefUnwindSafe for Memory
impl Send for Memory
impl Sync for Memory
impl Unpin for Memory
impl UnwindSafe for Memory
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