Struct google_sheets4::api::ChartData[][src]

pub struct ChartData {
    pub aggregate_type: Option<String>,
    pub column_reference: Option<DataSourceColumnReference>,
    pub group_rule: Option<ChartGroupRule>,
    pub source_range: Option<ChartSourceRange>,
}

The data included in a domain or series.

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

Fields

aggregate_type: Option<String>

The aggregation type for the series of a data source chart. Only supported for data source charts.

column_reference: Option<DataSourceColumnReference>

The reference to the data source column that the data reads from.

group_rule: Option<ChartGroupRule>

The rule to group the data by if the ChartData backs the domain of a data source chart. Only supported for data source charts.

source_range: Option<ChartSourceRange>

The source ranges of the data.

Trait Implementations

impl Clone for ChartData[src]

impl Debug for ChartData[src]

impl Default for ChartData[src]

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

impl Part for ChartData[src]

impl Serialize for ChartData[src]

Auto Trait Implementations

impl RefUnwindSafe for ChartData[src]

impl Send for ChartData[src]

impl Sync for ChartData[src]

impl Unpin for ChartData[src]

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