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

average

The average observed latency to the node, in seconds.

current

The current observed latency to the node, in seconds.

maximum

The maximum observed latency to the node, in seconds.

minimum

The minimum observed latency to the node, in seconds.

standard_deviation

The standard deviation of latency to the node.

Trait Implementations

impl Deserialize for LatencyStats

fn deserialize<__D>(deserializer: &mut __D) -> Result<LatencyStats, __D::Error> where __D: Deserializer

Derived Implementations

impl Debug for LatencyStats

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for LatencyStats

fn clone(&self) -> LatencyStats

1.0.0fn clone_from(&mut self, source: &Self)