pub trait PerformanceAnalysisMethod {
// Required methods
fn analyze(
&self,
data: &[PerformanceSnapshot],
) -> DeviceResult<PerformanceAnalysis>;
fn get_method_name(&self) -> String;
}
Expand description
Performance analysis method trait