Struct google_sqladmin1_beta4::ImportContextCsvImportOptions[][src]

pub struct ImportContextCsvImportOptions {
    pub table: Option<String>,
    pub columns: Option<Vec<String>>,
}

Options for importing data as CSV.

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

Fields

The table to which CSV data is imported.

The columns to which CSV data is imported. If not specified, all columns of the database table are loaded with CSV data.

Trait Implementations

impl Default for ImportContextCsvImportOptions
[src]

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

impl Clone for ImportContextCsvImportOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ImportContextCsvImportOptions
[src]

Formats the value using the given formatter. Read more

impl NestedType for ImportContextCsvImportOptions
[src]

impl Part for ImportContextCsvImportOptions
[src]

Auto Trait Implementations