Enum wasmtime_wmemcheck::MemState
source · pub enum MemState {
Unallocated,
ValidToWrite,
ValidToReadWrite,
}
Expand description
Memory state for memory checker.
Variants§
Unallocated
Unallocated memory.
ValidToWrite
Initialized but undefined memory.
ValidToReadWrite
Initialized and defined memory.
Trait Implementations§
source§impl PartialEq for MemState
impl PartialEq for MemState
impl StructuralPartialEq for MemState
Auto Trait Implementations§
impl Freeze for MemState
impl RefUnwindSafe for MemState
impl Send for MemState
impl Sync for MemState
impl Unpin for MemState
impl UnwindSafe for MemState
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