pub struct VmRecordingReplayState {
pub cursor: usize,
pub offset_breakpoints: HashSet<usize>,
pub line_breakpoints: HashSet<u32>,
}Fields§
§cursor: usize§offset_breakpoints: HashSet<usize>§line_breakpoints: HashSet<u32>Trait Implementations§
Source§impl Clone for VmRecordingReplayState
impl Clone for VmRecordingReplayState
Source§fn clone(&self) -> VmRecordingReplayState
fn clone(&self) -> VmRecordingReplayState
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 VmRecordingReplayState
impl Debug for VmRecordingReplayState
Source§impl Default for VmRecordingReplayState
impl Default for VmRecordingReplayState
Source§fn default() -> VmRecordingReplayState
fn default() -> VmRecordingReplayState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VmRecordingReplayState
impl RefUnwindSafe for VmRecordingReplayState
impl Send for VmRecordingReplayState
impl Sync for VmRecordingReplayState
impl Unpin for VmRecordingReplayState
impl UnsafeUnpin for VmRecordingReplayState
impl UnwindSafe for VmRecordingReplayState
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