Skip to main content

Classifier

Trait Classifier 

Source
pub trait Classifier: Send + Sync {
    // Required method
    fn classify(
        &self,
        call_target: &str,
        context: &ClassifyContext,
    ) -> Option<Classification>;
}

Required Methods§

Source

fn classify( &self, call_target: &str, context: &ClassifyContext, ) -> Option<Classification>

Implementors§