pub enum MemKind {
Local(LocalMemory),
Import(ImportedMemory),
}
Expand description
Represents whether a memory is a Local Memory or an Imported Memory
Variants§
Local(LocalMemory)
Import(ImportedMemory)
Implementations§
Source§impl MemKind
impl MemKind
Sourcepub fn unwrap_local(&self) -> &LocalMemory
pub fn unwrap_local(&self) -> &LocalMemory
Unwrap a local memory as a read-only reference. 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 a mutable reference. If it is an imported memory, it panics.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemKind
impl RefUnwindSafe for MemKind
impl Send for MemKind
impl Sync for MemKind
impl Unpin for MemKind
impl UnwindSafe for MemKind
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