//! Motion detection module
usecrate::prelude::v1::*;/// Generic motion detector.
pubtraitDetector{/// Detect motion.
////// This function will return `None`, if there is no motion, or a filtered motion field with
/// the number of vectors in motion.
fndetect_motion(&self, motion:&[MotionEntry])->Option<(usize, MotionField)>;}