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.
56mod duration;
7mod instant;
89pub use duration::Duration;
10pub use instant::Instant;