[][src]Struct google_monitoring3::TypedValue

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

distribution_value: Option<Distribution>

A distribution value.

string_value: Option<String>

A variable-length string value.

bool_value: Option<bool>

A Boolean value: true or false.

double_value: Option<f64>

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

int64_value: Option<String>

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

Trait Implementations

impl Part for TypedValue[src]

impl Default for TypedValue[src]

impl Clone for TypedValue[src]

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

Performs copy-assignment from source. Read more

impl Debug for TypedValue[src]

impl Serialize for TypedValue[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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