1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! A capability-oriented clock API modeled after `std::time`.
//!
//! This corresponds to [`std::time`].
//!
//! Instead of [`std::time`]'s methods which return the current time, this crate
//! has methods on [`SystemClock`] and [`MonotonicClock`].
//!
//! [`std::time`]: https://doc.rust-lang.org/std/time/
//! [`SystemClock`]: struct.SystemClock.html
//! [`MonotonicClock`]: struct.MonotonicClock.html

pub use cap_primitives::time::{
    Duration, Instant, MonotonicClock, SystemClock, SystemTime, SystemTimeError,
};