Struct google_monitoring3::api::ValueDescriptor[][src]

pub struct ValueDescriptor {
    pub key: Option<String>,
    pub metric_kind: Option<String>,
    pub unit: Option<String>,
    pub value_type: Option<String>,
}

A descriptor for the value columns in a data point.

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

Fields

key: Option<String>

The value key.

metric_kind: Option<String>

The value stream kind.

unit: Option<String>

The unit in which time_series point values are reported. unit follows the UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. unit is only valid if value_type is INTEGER, DOUBLE, DISTRIBUTION.

value_type: Option<String>

The value type.

Trait Implementations

impl Clone for ValueDescriptor[src]

impl Debug for ValueDescriptor[src]

impl Default for ValueDescriptor[src]

impl<'de> Deserialize<'de> for ValueDescriptor[src]

impl Part for ValueDescriptor[src]

impl Serialize for ValueDescriptor[src]

Auto Trait Implementations

impl RefUnwindSafe for ValueDescriptor[src]

impl Send for ValueDescriptor[src]

impl Sync for ValueDescriptor[src]

impl Unpin for ValueDescriptor[src]

impl UnwindSafe for ValueDescriptor[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.