pub struct Summary {
pub n: u64,
pub a_wins: u64,
pub b_wins: u64,
pub ties: u64,
pub a_win_rate_excl_ties: f64,
pub ci95_half_width: f64,
pub a_meaningfully_ahead: bool,
}Expand description
Aggregated summary.
Fields§
§n: u64Total judgments.
a_wins: u64Wins for A.
b_wins: u64Wins for B.
ties: u64Ties.
a_win_rate_excl_ties: f64A’s win rate excluding ties.
ci95_half_width: f64Normal-approximation 95% CI half-width on the excl-ties win rate.
a_meaningfully_ahead: boolTrue when A is meaningfully ahead (CI excludes 0.5).
Trait Implementations§
impl Copy for Summary
impl StructuralPartialEq for Summary
Auto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnsafeUnpin for Summary
impl UnwindSafe for Summary
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