pub trait ContextAnalyzer {
// Required methods
fn analyze_context(
&self,
user_context: &UserContext,
) -> DeviceResult<Vec<f64>>;
fn get_context_dimensions(&self) -> Vec<String>;
}Expand description
Context analyzer trait