Struct google_sheets4::api::DataSourceObjectReference[][src]

pub struct DataSourceObjectReference {
    pub chart_id: Option<i32>,
    pub data_source_formula_cell: Option<GridCoordinate>,
    pub data_source_pivot_table_anchor_cell: Option<GridCoordinate>,
    pub data_source_table_anchor_cell: Option<GridCoordinate>,
    pub sheet_id: Option<String>,
}

Reference to a data source object.

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

Fields

chart_id: Option<i32>

References to a data source chart.

data_source_formula_cell: Option<GridCoordinate>

References to a cell containing DataSourceFormula.

data_source_pivot_table_anchor_cell: Option<GridCoordinate>

References to a data source PivotTable anchored at the cell.

data_source_table_anchor_cell: Option<GridCoordinate>

References to a DataSourceTable anchored at the cell.

sheet_id: Option<String>

References to a DATA_SOURCE sheet.

Trait Implementations

impl Clone for DataSourceObjectReference[src]

impl Debug for DataSourceObjectReference[src]

impl Default for DataSourceObjectReference[src]

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

impl Part for DataSourceObjectReference[src]

impl Serialize for DataSourceObjectReference[src]

Auto Trait Implementations

impl RefUnwindSafe for DataSourceObjectReference[src]

impl Send for DataSourceObjectReference[src]

impl Sync for DataSourceObjectReference[src]

impl Unpin for DataSourceObjectReference[src]

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