pub trait IntentClassifier: OclaService {
// Required method
fn classify_intent(
&self,
request: IntentRequest,
) -> OclaResult<IntentDecision>;
}Required Methods§
fn classify_intent(&self, request: IntentRequest) -> OclaResult<IntentDecision>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".