Struct etcd::stats::LatencyStats [] [src]

pub struct LatencyStats {
    pub average: f64,
    pub current: f64,
    pub maximum: f64,
    pub minimum: f64,
    pub standard_deviation: f64,
}

Statistics about the network latency to an etcd node.

Fields

The average observed latency to the node, in seconds.

The current observed latency to the node, in seconds.

The maximum observed latency to the node, in seconds.

The minimum observed latency to the node, in seconds.

The standard deviation of latency to the node.

Trait Implementations

impl Clone for LatencyStats
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LatencyStats
[src]

Formats the value using the given formatter.