pub trait RecommendationAlgorithm {
// Required methods
fn generate_recommendations(
&self,
analysis: &CostAnalysis,
) -> DeviceResult<Vec<OptimizationRecommendation>>;
fn get_algorithm_name(&self) -> String;
}Expand description
Recommendation algorithm trait