pub struct RunSummary<F> {
pub iterations: usize,
pub elapsed: Duration,
pub best_measure: Option<F>,
}Expand description
Summary information describing a completed engine run.
Fields§
§iterations: usizeFinal iteration count.
elapsed: DurationTotal execution time.
best_measure: Option<F>Best metric value observed during the run.
Trait Implementations§
Source§impl<F: Clone> Clone for RunSummary<F>
impl<F: Clone> Clone for RunSummary<F>
Source§fn clone(&self) -> RunSummary<F>
fn clone(&self) -> RunSummary<F>
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 moreAuto Trait Implementations§
impl<F> Freeze for RunSummary<F>where
F: Freeze,
impl<F> RefUnwindSafe for RunSummary<F>where
F: RefUnwindSafe,
impl<F> Send for RunSummary<F>where
F: Send,
impl<F> Sync for RunSummary<F>where
F: Sync,
impl<F> Unpin for RunSummary<F>where
F: Unpin,
impl<F> UnsafeUnpin for RunSummary<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for RunSummary<F>where
F: UnwindSafe,
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