[][src]Struct google_bigquery2::ViewDefinition

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

query: Option<String>

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

use_legacy_sql: Option<bool>

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.

user_defined_function_resources: Option<Vec<UserDefinedFunctionResource>>

Describes user-defined function resources used in the query.

Trait Implementations

impl Part for ViewDefinition[src]

impl Clone for ViewDefinition[src]

impl Default for ViewDefinition[src]

impl Debug for ViewDefinition[src]

impl Serialize for ViewDefinition[src]

impl<'de> Deserialize<'de> for ViewDefinition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]