futures_time/time/
mod.rs

1//! Temporal quantification.
2//!
3//! This submodule wraps the types in `std::time` so we can implement traits on
4//! them. Each type can be converted to-and-from their respective counterparts.
5
6mod duration;
7mod instant;
8
9pub use duration::Duration;
10pub use instant::Instant;