diff --git a/src/hist.rs b/src/hist.rs index 0b27da4..68a5bc4 100644 --- a/src/hist.rs +++ b/src/hist.rs @@ -10,7 +10,7 @@ use hdrhistogram::{Histogram}; use hdrhistogram::serialization::V2DeflateSerializer; use hdrhistogram::serialization::interval_log::{IntervalLogWriterBuilder, Tag}; -type C = u64; +pub type C = u64; pub fn nanos(d: Duration) -> u64 { d.as_secs() * 1_000_000_000_u64 + (d.subsec_nanos() as u64)