pub trait DriftDetector: Send + Sync { // Required method fn detect(&self, reference: &[f64], test: &[f64]) -> Result<DriftResult>; }
Trait for drift detectors that compare two 1-D sample arrays.
Compare a reference distribution against a test distribution.