Struct google_monitoring3::CollectdValue[][src]

pub struct CollectdValue {
    pub data_source_type: Option<String>,
    pub data_source_name: Option<String>,
    pub value: Option<TypedValue>,
}

A single data point from a collectd-based plugin.

This type is not used in any activity, and only used as part of another schema.

Fields

The type of measurement.

The data source for the collectd value. For example there are two data sources for network measurements: "rx" and "tx".

The measurement value.

Trait Implementations

impl Default for CollectdValue
[src]

Returns the "default value" for a type. Read more

impl Clone for CollectdValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CollectdValue
[src]

Formats the value using the given formatter. Read more

impl Part for CollectdValue
[src]

Auto Trait Implementations