Struct google_bigquery2::JobConfiguration [] [src]

pub struct JobConfiguration {
    pub load: Option<JobConfigurationLoad>,
    pub dry_run: Option<bool>,
    pub copy: Option<JobConfigurationTableCopy>,
    pub extract: Option<JobConfigurationExtract>,
    pub query: Option<JobConfigurationQuery>,
}

There is no detailed description.

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

Fields

[Pick one] Configures a load job.

[Optional] If set, don't actually run this job. A valid query will return a mostly empty response with some processing statistics, while an invalid query will return the same error it would if it wasn't a dry run. Behavior of non-query jobs is undefined.

[Pick one] Copies a table.

[Pick one] Configures an extract job.

[Pick one] Configures a query job.

Trait Implementations

impl Debug for JobConfiguration
[src]

Formats the value using the given formatter.

impl Clone for JobConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for JobConfiguration
[src]

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

impl Part for JobConfiguration
[src]