pub struct ShadowReport {
pub samples: u64,
pub diverged: u64,
pub first: Option<(u64, Compared)>,
}Expand description
Outcome of a shadow run — the paste-able conclusion.
Fields§
§samples: u64How many times both sides were asked.
diverged: u64How many of those disagreed in membership or order.
first: Option<(u64, Compared)>The first sample that disagreed, and how.
Auto Trait Implementations§
impl Freeze for ShadowReport
impl RefUnwindSafe for ShadowReport
impl Send for ShadowReport
impl Sync for ShadowReport
impl Unpin for ShadowReport
impl UnsafeUnpin for ShadowReport
impl UnwindSafe for ShadowReport
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