cfdp/
time.rs

1use core::fmt::Debug;
2
3/// Generic abstraction for a check/countdown timer.
4pub trait CountdownProvider: Debug {
5    fn has_expired(&self) -> bool;
6    fn reset(&mut self);
7}