pub trait ClockProvider {
// Required method
fn get_clock(&self) -> RobotClock;
}
Expand description
A trait to provide a clock to the runtime.
pub trait ClockProvider {
// Required method
fn get_clock(&self) -> RobotClock;
}
A trait to provide a clock to the runtime.