pub struct ChunkPerformance {
pub chunksize: usize,
pub execution_time_ns: u64,
pub work_complexity: f64,
pub cache_miss_rate: Option<f64>,
pub thread_utilization: f64,
}
Expand description
Performance metrics for a chunk execution
Fields§
§chunksize: usize
Chunk size used
execution_time_ns: u64
Execution time in nanoseconds
work_complexity: f64
Work complexity estimate
cache_miss_rate: Option<f64>
Cache miss rate (if available)
thread_utilization: f64
Thread utilization percentage
Trait Implementations§
Source§impl Clone for ChunkPerformance
impl Clone for ChunkPerformance
Source§fn clone(&self) -> ChunkPerformance
fn clone(&self) -> ChunkPerformance
Returns a duplicate of the value. Read more
1.0.0 · 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 Freeze for ChunkPerformance
impl RefUnwindSafe for ChunkPerformance
impl Send for ChunkPerformance
impl Sync for ChunkPerformance
impl Unpin for ChunkPerformance
impl UnwindSafe for ChunkPerformance
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