pub trait Classifier: Send + Sync {
// Required method
fn classify(&self, input: &ClassifyInput) -> Result<ClassifyOutput>;
}pub trait Classifier: Send + Sync {
// Required method
fn classify(&self, input: &ClassifyInput) -> Result<ClassifyOutput>;
}