pub enum ProgressPhase {
Warmup {
elapsed_ms: u64,
target_ms: u64,
},
Samples {
current: u32,
total: u32,
},
Complete,
}Expand description
Progress phase during benchmark execution.
Variants§
Warmup
Warmup phase - running iterations to stabilize CPU/cache state.
Fields
Samples
Sample collection phase.
Complete
Benchmark complete.
Trait Implementations§
Source§impl Clone for ProgressPhase
impl Clone for ProgressPhase
Source§fn clone(&self) -> ProgressPhase
fn clone(&self) -> ProgressPhase
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProgressPhase
impl Debug for ProgressPhase
Auto Trait Implementations§
impl Freeze for ProgressPhase
impl RefUnwindSafe for ProgressPhase
impl Send for ProgressPhase
impl Sync for ProgressPhase
impl Unpin for ProgressPhase
impl UnwindSafe for ProgressPhase
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)