pub struct Tally {
pub wins: usize,
pub losses: usize,
pub ties: usize,
}Expand description
How one slice of the corpus came out.
Fields§
§wins: usize§losses: usize§ties: usizeImplementations§
Trait Implementations§
impl StructuralPartialEq for Tally
Auto Trait Implementations§
impl Freeze for Tally
impl RefUnwindSafe for Tally
impl Send for Tally
impl Sync for Tally
impl Unpin for Tally
impl UnsafeUnpin for Tally
impl UnwindSafe for Tally
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