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
struct_values: Option<HashMap<String, QueryParameterValue>>
[Optional] The struct field values, in order of the struct type's declaration.
array_values: Option<Vec<QueryParameterValue>>
[Optional] The array values, if this is an array type.
value: Option<String>
[Optional] The value of this value, if a simple scalar type.
Trait Implementations
impl Debug for QueryParameterValue[src]
impl Clone for QueryParameterValue[src]
fn clone(&self) -> QueryParameterValue
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for QueryParameterValue[src]
fn default() -> QueryParameterValue
Returns the "default value" for a type. Read more