dynomite/util/mod.rs
1//! Small utility helpers shared across the engine: byte-slice helpers,
2//! numeric parsing, time, address resolution, and the typed map
3//! abstractions that wrap third-party data structures.
4//!
5//! The Cassandra-style estimated histogram lives next to its only
6//! consumer in [`crate::stats::histogram`].
7
8pub mod atoi;
9pub mod dict;
10pub mod dyn_string;
11pub mod rbtree;
12pub mod sockinfo;
13pub mod time;