Struct google_monitoring3::TypedValue[][src]

pub struct TypedValue {
    pub distribution_value: Option<Distribution>,
    pub string_value: Option<String>,
    pub bool_value: Option<bool>,
    pub double_value: Option<f64>,
    pub int64_value: Option<String>,
}

A single strongly-typed value.

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

Fields

A distribution value.

A variable-length string value.

A Boolean value: true or false.

A 64-bit double-precision floating-point number. Its magnitude is approximately ±10±300 and it has 16 significant digits of precision.

A 64-bit integer. Its range is approximately ±9.2x1018.

Trait Implementations

impl Default for TypedValue
[src]

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

impl Clone for TypedValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TypedValue
[src]

Formats the value using the given formatter. Read more

impl Part for TypedValue
[src]

Auto Trait Implementations

impl Send for TypedValue

impl Sync for TypedValue