pub trait FactExtractor: Send + Sync {
// Required method
fn extract(&self, content: &str, kind: &str) -> Option<Vec<ExtractedFact>>;
}Expand description
Sync, no-IO extractor (heuristic). Safe to call anywhere.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".