pub trait ReplayDetector: Send + Sync { // Required methods fn check(&mut self, seq: u64) -> bool; fn accept(&mut self); }