Struct collectd_plugin::ValueReport [] [src]

pub struct ValueReport<'a> {
    pub name: &'a str,
    pub value: Value,
    pub min: f64,
    pub max: f64,
}

Name and value of a reported metric

Fields

Name of the metric. If values has a length of 1, this is often just "value"

The value reported

Minimum value seen in an interval

Maximum value seen in an interval

Trait Implementations

impl<'a> Debug for ValueReport<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for ValueReport<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> Clone for ValueReport<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Copy for ValueReport<'a>
[src]

Auto Trait Implementations

impl<'a> Send for ValueReport<'a>

impl<'a> Sync for ValueReport<'a>