pub struct NullReport;Expand description
Report type to use for benchmarking without optimising away simulation work.
Trait Implementations§
Source§impl Clone for NullReport
impl Clone for NullReport
Source§fn clone(&self) -> NullReport
fn clone(&self) -> NullReport
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 NullReport
Source§impl Debug for NullReport
impl Debug for NullReport
Source§impl Report for NullReport
impl Report for NullReport
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, _: &Simulation) -> String
fn format(&self, _: &Simulation) -> String
Format the aggregated report for the command-line interface.
Auto Trait Implementations§
impl Freeze for NullReport
impl RefUnwindSafe for NullReport
impl Send for NullReport
impl Sync for NullReport
impl Unpin for NullReport
impl UnsafeUnpin for NullReport
impl UnwindSafe for NullReport
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