pub struct EfficiencyScorer { /* private fields */ }Expand description
Efficiency scorer for task-level memory profiling
Implementations§
Source§impl EfficiencyScorer
impl EfficiencyScorer
Sourcepub fn with_config(config: EfficiencyConfig) -> Self
pub fn with_config(config: EfficiencyConfig) -> Self
Create new efficiency scorer with custom configuration
Sourcepub fn calculate_efficiency(
&self,
profile: &TaskMemoryProfile,
cpu_usage_percent: f64,
io_bytes_processed: u64,
network_bytes_transferred: u64,
) -> ComponentScores
pub fn calculate_efficiency( &self, profile: &TaskMemoryProfile, cpu_usage_percent: f64, io_bytes_processed: u64, network_bytes_transferred: u64, ) -> ComponentScores
Calculate efficiency score for a task profile
Sourcepub fn calculate_weighted_efficiency(
&self,
task_type: &TaskType,
component_scores: &ComponentScores,
) -> f64
pub fn calculate_weighted_efficiency( &self, task_type: &TaskType, component_scores: &ComponentScores, ) -> f64
Calculate weighted efficiency score based on task type
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EfficiencyScorer
impl RefUnwindSafe for EfficiencyScorer
impl Send for EfficiencyScorer
impl Sync for EfficiencyScorer
impl Unpin for EfficiencyScorer
impl UnsafeUnpin for EfficiencyScorer
impl UnwindSafe for EfficiencyScorer
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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