Struct google_bigquery2::QueryParameterValue[][src]

pub struct QueryParameterValue {
    pub struct_values: Option<HashMap<String, QueryParameterValue>>,
    pub array_values: Option<Vec<QueryParameterValue>>,
    pub value: Option<String>,
}

There is no detailed description.

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

Fields

[Optional] The struct field values, in order of the struct type's declaration.

[Optional] The array values, if this is an array type.

[Optional] The value of this value, if a simple scalar type.

Trait Implementations

impl Default for QueryParameterValue
[src]

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

impl Clone for QueryParameterValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QueryParameterValue
[src]

Formats the value using the given formatter. Read more

impl Part for QueryParameterValue
[src]

Auto Trait Implementations