Struct google_monitoring3::api::GoogleMonitoringV3Range[][src]

pub struct GoogleMonitoringV3Range {
    pub max: Option<f64>,
    pub min: Option<f64>,
}

Range of numerical values, inclusive of min and exclusive of max. If the open range "< range.max" is desired, set range.min = -infinity. If the open range ">= range.min" is desired, set range.max = infinity.

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

Fields

max: Option<f64>

Range maximum.

min: Option<f64>

Range minimum.

Trait Implementations

impl Clone for GoogleMonitoringV3Range[src]

impl Debug for GoogleMonitoringV3Range[src]

impl Default for GoogleMonitoringV3Range[src]

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

impl Part for GoogleMonitoringV3Range[src]

impl Serialize for GoogleMonitoringV3Range[src]

Auto Trait Implementations

impl RefUnwindSafe for GoogleMonitoringV3Range[src]

impl Send for GoogleMonitoringV3Range[src]

impl Sync for GoogleMonitoringV3Range[src]

impl Unpin for GoogleMonitoringV3Range[src]

impl UnwindSafe for GoogleMonitoringV3Range[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.