rama-utils 0.2.0-alpha.7

utilities crate for rama
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! latency utilities and common types

/// The latency unit used to report latencies by various parts of the Rama codebase.
#[derive(Copy, Clone, Debug)]
pub enum LatencyUnit {
    /// Use seconds.
    Seconds,
    /// Use milliseconds.
    Millis,
    /// Use microseconds.
    Micros,
    /// Use nanoseconds.
    Nanos,
}