Files
sat-rs/satrs/src/time.rs
2025-09-06 19:26:39 +02:00

8 lines
167 B
Rust

use core::fmt::Debug;
/// Generic abstraction for a check/countdown timer.
pub trait Countdown: Debug {
fn has_expired(&self) -> bool;
fn reset(&mut self);
}