Struct google_bigquery2::QueryParameter[][src]

pub struct QueryParameter {
    pub parameter_type: Option<QueryParameterType>,
    pub parameter_value: Option<QueryParameterValue>,
    pub name: Option<String>,
}

There is no detailed description.

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

Fields

[Required] The type of this parameter.

[Required] The value of this parameter.

[Optional] If unset, this is a positional parameter. Otherwise, should be unique within a query.

Trait Implementations

impl Default for QueryParameter
[src]

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

impl Clone for QueryParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QueryParameter
[src]

Formats the value using the given formatter. Read more

impl Part for QueryParameter
[src]

Auto Trait Implementations