Struct google_sheets4::api::DataSourceTable[][src]

pub struct DataSourceTable {
    pub column_selection_type: Option<String>,
    pub columns: Option<Vec<DataSourceColumnReference>>,
    pub data_execution_status: Option<DataExecutionStatus>,
    pub data_source_id: Option<String>,
    pub filter_specs: Option<Vec<FilterSpec>>,
    pub row_limit: Option<i32>,
    pub sort_specs: Option<Vec<SortSpec>>,
}
Expand description

A data source table, which allows the user to import a static table of data from the DataSource into Sheets. This is also known as “Extract” in the Sheets editor.

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

Fields

column_selection_type: Option<String>

The type to select columns for the data source table. Defaults to SELECTED.

columns: Option<Vec<DataSourceColumnReference>>

Columns selected for the data source table. The column_selection_type must be SELECTED.

data_execution_status: Option<DataExecutionStatus>

Output only. The data execution status.

data_source_id: Option<String>

The ID of the data source the data source table is associated with.

filter_specs: Option<Vec<FilterSpec>>

Filter specifications in the data source table.

row_limit: Option<i32>

The limit of rows to return. If not set, a default limit is applied. Please refer to the Sheets editor for the default and max limit.

sort_specs: Option<Vec<SortSpec>>

Sort specifications in the data source table. The result of the data source table is sorted based on the sort specifications in order.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.