pub struct TimeTravelReport {
pub run_id: String,
pub at_seq: Option<u64>,
pub event_count: usize,
pub timeline: Vec<TimeTravelFrame>,
pub state_at_seq: State,
pub selected_event: Option<TimeTravelFrame>,
}Fields§
§run_id: String§at_seq: Option<u64>§event_count: usize§timeline: Vec<TimeTravelFrame>§state_at_seq: State§selected_event: Option<TimeTravelFrame>Trait Implementations§
Source§impl Clone for TimeTravelReport
impl Clone for TimeTravelReport
Source§fn clone(&self) -> TimeTravelReport
fn clone(&self) -> TimeTravelReport
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 moreAuto Trait Implementations§
impl Freeze for TimeTravelReport
impl RefUnwindSafe for TimeTravelReport
impl Send for TimeTravelReport
impl Sync for TimeTravelReport
impl Unpin for TimeTravelReport
impl UnsafeUnpin for TimeTravelReport
impl UnwindSafe for TimeTravelReport
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