pub enum LateMapVtl0MemoryPolicy {
Halt,
Log,
InjectException,
}
Expand description
Policy for the partition when mapping VTL0 memory late.
Variants§
Halt
Halt execution of the VP if VTL0 memory is accessed.
Log
Log the error but emulate the access with the instruction emulator.
InjectException
Inject an exception into the guest.
Trait Implementations§
Source§impl Clone for LateMapVtl0MemoryPolicy
impl Clone for LateMapVtl0MemoryPolicy
Source§fn clone(&self) -> LateMapVtl0MemoryPolicy
fn clone(&self) -> LateMapVtl0MemoryPolicy
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LateMapVtl0MemoryPolicy
impl Debug for LateMapVtl0MemoryPolicy
Source§impl PartialEq for LateMapVtl0MemoryPolicy
impl PartialEq for LateMapVtl0MemoryPolicy
impl Copy for LateMapVtl0MemoryPolicy
impl Eq for LateMapVtl0MemoryPolicy
impl StructuralPartialEq for LateMapVtl0MemoryPolicy
Auto Trait Implementations§
impl Freeze for LateMapVtl0MemoryPolicy
impl RefUnwindSafe for LateMapVtl0MemoryPolicy
impl Send for LateMapVtl0MemoryPolicy
impl Sync for LateMapVtl0MemoryPolicy
impl Unpin for LateMapVtl0MemoryPolicy
impl UnwindSafe for LateMapVtl0MemoryPolicy
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