pub trait ReplayDetector {
    fn check(&mut self, seq: u64) -> bool;
    fn accept(&mut self);
}

Required Methods

Implementors