pub struct ReductionTimings {
pub local_prefit: Duration,
pub candidate_build: Duration,
pub error_measure: Duration,
pub dcc_fit: Duration,
pub ancestor_prune: Duration,
}Fields§
§local_prefit: Duration§candidate_build: Duration§error_measure: Duration§dcc_fit: Duration§ancestor_prune: DurationTime spent testing and applying ancestor reverse-prune candidates.
Trait Implementations§
Source§impl Clone for ReductionTimings
impl Clone for ReductionTimings
Source§fn clone(&self) -> ReductionTimings
fn clone(&self) -> ReductionTimings
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 ReductionTimings
Source§impl Debug for ReductionTimings
impl Debug for ReductionTimings
Source§impl Default for ReductionTimings
impl Default for ReductionTimings
Source§fn default() -> ReductionTimings
fn default() -> ReductionTimings
Returns the “default value” for a type. Read more
impl Eq for ReductionTimings
Source§impl PartialEq for ReductionTimings
impl PartialEq for ReductionTimings
impl StructuralPartialEq for ReductionTimings
Auto Trait Implementations§
impl Freeze for ReductionTimings
impl RefUnwindSafe for ReductionTimings
impl Send for ReductionTimings
impl Sync for ReductionTimings
impl Unpin for ReductionTimings
impl UnsafeUnpin for ReductionTimings
impl UnwindSafe for ReductionTimings
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