adjusting_clock 0.1.0

Measure time, while synchronizing it with an external source, for example adjusting the clock of a client to match the time one of a server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

mod adjustment;
mod clock;
mod simple;

pub use adjustment::{AdjustmentSettings, ConstantRate};
pub use clock::Clock;
pub use simple::AdjustingClock;

#[cfg(test)]
mod test;