pub struct ReplayReport {
pub events: u64,
pub matched: bool,
}Expand description
Outcome of a ReplayHarness::replay run.
Fields§
§events: u64Number of journal entries consumed.
matched: boolWhether the recomputed DerivedEvent
entries matched the recording exactly.
Trait Implementations§
Source§impl Clone for ReplayReport
impl Clone for ReplayReport
Source§fn clone(&self) -> ReplayReport
fn clone(&self) -> ReplayReport
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 ReplayReport
impl Debug for ReplayReport
Source§impl PartialEq for ReplayReport
impl PartialEq for ReplayReport
Source§fn eq(&self, other: &ReplayReport) -> bool
fn eq(&self, other: &ReplayReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReplayReport
impl Eq for ReplayReport
impl StructuralPartialEq for ReplayReport
Auto Trait Implementations§
impl Freeze for ReplayReport
impl RefUnwindSafe for ReplayReport
impl Send for ReplayReport
impl Sync for ReplayReport
impl Unpin for ReplayReport
impl UnsafeUnpin for ReplayReport
impl UnwindSafe for ReplayReport
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