//! Validated scalar types and the formatters that render them.
//!
//! Two rules from the specification are enforced structurally here rather than
//! by convention:
//!
//! * Raw byte counters and timestamps are integral. Only *calculated* values —
//! [`Percent`] and [`Rate`] — use floating point, and both reject NaN,
//! infinities, and negatives at construction (§10.4).
//! * Every formatter is bounded by a display-width budget it can never exceed,
//! so a value crossing a unit boundary cannot reflow a column (§5.4).
pub use ;
pub use ;
pub use Percent;
pub use Rate;
pub use ;