Struct google_sheets4::api::ChartGroupRule[][src]

pub struct ChartGroupRule {
    pub date_time_rule: Option<ChartDateTimeRule>,
    pub histogram_rule: Option<ChartHistogramRule>,
}

An optional setting on the ChartData of the domain of a data source chart that defines buckets for the values in the domain rather than breaking out each individual value. For example, when plotting a data source chart, you can specify a histogram rule on the domain (it should only contain numeric values), grouping its values into buckets. Any values of a chart series that fall into the same bucket are aggregated based on the aggregate_type.

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

Fields

date_time_rule: Option<ChartDateTimeRule>

A ChartDateTimeRule.

histogram_rule: Option<ChartHistogramRule>

A ChartHistogramRule

Trait Implementations

impl Clone for ChartGroupRule[src]

impl Debug for ChartGroupRule[src]

impl Default for ChartGroupRule[src]

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

impl Part for ChartGroupRule[src]

impl Serialize for ChartGroupRule[src]

Auto Trait Implementations

impl RefUnwindSafe for ChartGroupRule[src]

impl Send for ChartGroupRule[src]

impl Sync for ChartGroupRule[src]

impl Unpin for ChartGroupRule[src]

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