pub struct PicksReport {
pub basic: BasicReport,
}Expand description
Report for selecting pick recommendations from basic outcome probabilities.
Fields§
§basic: BasicReportTrait Implementations§
Source§impl Add for PicksReport
impl Add for PicksReport
Source§impl Clone for PicksReport
impl Clone for PicksReport
Source§fn clone(&self) -> PicksReport
fn clone(&self) -> PicksReport
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 PicksReport
Source§impl Debug for PicksReport
impl Debug for PicksReport
Source§impl Default for PicksReport
impl Default for PicksReport
Source§fn default() -> PicksReport
fn default() -> PicksReport
Returns the “default value” for a type. Read more
Source§impl Report for PicksReport
impl Report for PicksReport
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 PicksReport
impl RefUnwindSafe for PicksReport
impl Send for PicksReport
impl Sync for PicksReport
impl Unpin for PicksReport
impl UnsafeUnpin for PicksReport
impl UnwindSafe for PicksReport
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