clock-bound 3.0.0-beta.0

A crate to provide error bounded timestamp intervals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Simple time library for the `ClockBound` time synchronization daemon
//!
//! Other time libraries do not meet our needs, as we make heavy usage of time stamp counters (TSCs)
//! for the bulk of our processing. These values are more low-level than those seen in `chrono` or other time types

pub mod clocks;
pub mod inner;
pub mod instant;
#[cfg(feature = "daemon")]
pub mod timex;
pub mod tsc;

pub use inner::{Clock, ClockExt};
pub use instant::{Duration, Instant};
pub use tsc::{TscCount, TscDiff};