sched_clock/
prelude.rs

1//! Standard imports to make this crate easiest to use
2
3pub use crate::Clock;
4
5#[cfg(target_os = "linux")]
6pub use crate::clocks::linux::PosixClock;