cfdp-rs 0.3.0

High level CCSDS File Delivery Protocol components
Documentation
1
2
3
4
5
6
7
use core::fmt::Debug;

/// Generic abstraction for a check/countdown timer. Should also be cheap to copy and clone.
pub trait Countdown: Debug {
    fn has_expired(&self) -> bool;
    fn reset(&mut self);
}