Struct google_sheets4::api::ChartHistogramRule[][src]

pub struct ChartHistogramRule {
    pub interval_size: Option<f64>,
    pub max_value: Option<f64>,
    pub min_value: Option<f64>,
}

Allows you to organize numeric values in a source data column into buckets of constant size.

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

Fields

interval_size: Option<f64>

The size of the buckets that are created. Must be positive.

max_value: Option<f64>

The maximum value at which items are placed into buckets. Values greater than the maximum are grouped into a single bucket. If omitted, it is determined by the maximum item value.

min_value: Option<f64>

The minimum value at which items are placed into buckets. Values that are less than the minimum are grouped into a single bucket. If omitted, it is determined by the minimum item value.

Trait Implementations

impl Clone for ChartHistogramRule[src]

impl Debug for ChartHistogramRule[src]

impl Default for ChartHistogramRule[src]

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

impl Part for ChartHistogramRule[src]

impl Serialize for ChartHistogramRule[src]

Auto Trait Implementations

impl RefUnwindSafe for ChartHistogramRule[src]

impl Send for ChartHistogramRule[src]

impl Sync for ChartHistogramRule[src]

impl Unpin for ChartHistogramRule[src]

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