pub struct BasicReport {
pub stats: [BasicStats; 16],
}Expand description
Report for 3-0, advancement, and 0-3 percentages for each team.
Fields§
§stats: [BasicStats; 16]Per-team outcome counts, indexed by initial seed index.
Trait Implementations§
Source§impl Add for BasicReport
impl Add for BasicReport
Source§impl Clone for BasicReport
impl Clone for BasicReport
Source§fn clone(&self) -> BasicReport
fn clone(&self) -> BasicReport
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 moreimpl Copy for BasicReport
Source§impl Debug for BasicReport
impl Debug for BasicReport
Source§impl Default for BasicReport
impl Default for BasicReport
Source§fn default() -> BasicReport
fn default() -> BasicReport
Returns the “default value” for a type. Read more
Source§impl Report for BasicReport
impl Report for BasicReport
Source§fn update(&mut self, ss: &SwissSystem)
fn update(&mut self, ss: &SwissSystem)
Update this report with one completed Swiss-system tournament.
Source§fn format(&self, sim: &Simulation) -> String
fn format(&self, sim: &Simulation) -> String
Format the aggregated report for the command-line interface.
Auto Trait Implementations§
impl Freeze for BasicReport
impl RefUnwindSafe for BasicReport
impl Send for BasicReport
impl Sync for BasicReport
impl Unpin for BasicReport
impl UnsafeUnpin for BasicReport
impl UnwindSafe for BasicReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more