pub trait Detector: Send + Sync { // Required method fn detect(&self, input: &str) -> Vec<Detection>; }
Shared detector contract for text-only PII detection.
Detect PII spans in the supplied input string.