//! Coarse time representations represent times and durations as a whole number
//! of seconds and use 32bit primitives as the internal representation.
//!
//! Unlike `std::time`, these types always have a fixed size representation and
//! also includes atomic types.
pub use AtomicDuration;
pub use AtomicInstant;
pub use AtomicUnixInstant;
pub use Duration;
pub use Instant;
pub use UnixInstant;