pub struct GateDiff {
pub frame_idx: u64,
pub event_idx: u64,
pub last_event: String,
pub expected_checksum: u64,
pub actual_checksum: u64,
}Expand description
Detailed diff information for a checksum mismatch.
Fields§
§frame_idx: u64Frame index where the mismatch occurred.
event_idx: u64Number of input events processed before the failing frame.
last_event: StringDescription of the last event before the failing frame.
expected_checksum: u64Expected checksum from the trace.
actual_checksum: u64Actual checksum from replay.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GateDiff
impl RefUnwindSafe for GateDiff
impl Send for GateDiff
impl Sync for GateDiff
impl Unpin for GateDiff
impl UnsafeUnpin for GateDiff
impl UnwindSafe for GateDiff
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