Struct google_bigquery2::GoogleSheetsOptions [] [src]

pub struct GoogleSheetsOptions {
    pub skip_leading_rows: Option<String>,
}

There is no detailed description.

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

Fields

[Optional] The number of rows at the top of a sheet that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows that should be skipped. When autodetect is on, behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N > 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.

Trait Implementations

impl Debug for GoogleSheetsOptions
[src]

Formats the value using the given formatter.

impl Clone for GoogleSheetsOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for GoogleSheetsOptions
[src]

Returns the "default value" for a type. Read more

impl Part for GoogleSheetsOptions
[src]