pub enum VmExecutionMode {
Normal,
Record,
Replay,
}Expand description
VM execution mode for record/replay.
Variants§
Trait Implementations§
Source§impl Clone for VmExecutionMode
impl Clone for VmExecutionMode
Source§fn clone(&self) -> VmExecutionMode
fn clone(&self) -> VmExecutionMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VmExecutionMode
impl Debug for VmExecutionMode
Source§impl PartialEq for VmExecutionMode
impl PartialEq for VmExecutionMode
Source§fn eq(&self, other: &VmExecutionMode) -> bool
fn eq(&self, other: &VmExecutionMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VmExecutionMode
impl StructuralPartialEq for VmExecutionMode
Auto Trait Implementations§
impl Freeze for VmExecutionMode
impl RefUnwindSafe for VmExecutionMode
impl Send for VmExecutionMode
impl Sync for VmExecutionMode
impl Unpin for VmExecutionMode
impl UnsafeUnpin for VmExecutionMode
impl UnwindSafe for VmExecutionMode
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