cap_async_std/time/
mod.rs

1//! A capability-based clock API modeled after [`std::time`].
2//!
3//! This corresponds to [`std::time`].
4//!
5//! Instead of [`std::time`]'s methods which return the current time, this
6//! crate has methods on [`SystemClock`] and [`MonotonicClock`].
7
8pub use cap_primitives::time::{
9    Duration, Instant, MonotonicClock, SystemClock, SystemTime, SystemTimeError,
10};