Struct google_bigquery2::ViewDefinition [] [src]

pub struct ViewDefinition {
    pub query: Option<String>,
    pub use_legacy_sql: Option<bool>,
    pub user_defined_function_resources: Option<Vec<UserDefinedFunctionResource>>,
}

There is no detailed description.

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

Fields

[Required] A query that BigQuery executes when the view is referenced.

Specifies whether to use BigQuery's legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery's standard SQL: https://cloud.google.com/bigquery/sql-reference/ Queries and views that reference this view must use the same flag value.

[Experimental] Describes user-defined function resources used in the query.

Trait Implementations

impl Default for ViewDefinition
[src]

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

impl Clone for ViewDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ViewDefinition
[src]

Formats the value using the given formatter.

impl Part for ViewDefinition
[src]