pub struct SystemVariables {
pub types: Option<HashMap<String, StandardSqlDataType>>,
pub values: Option<HashMap<String, Value>>,
}Expand description
System variables given to a query.
This type is not used in any activity, and only used as part of another schema.
Fields§
§types: Option<HashMap<String, StandardSqlDataType>>Output only. Data type for each system variable.
values: Option<HashMap<String, Value>>Output only. Value for each system variable.
Trait Implementations§
Source§impl Clone for SystemVariables
impl Clone for SystemVariables
Source§fn clone(&self) -> SystemVariables
fn clone(&self) -> SystemVariables
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SystemVariables
impl Debug for SystemVariables
Source§impl Default for SystemVariables
impl Default for SystemVariables
Source§fn default() -> SystemVariables
fn default() -> SystemVariables
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemVariables
impl<'de> Deserialize<'de> for SystemVariables
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SystemVariables
impl Serialize for SystemVariables
impl Part for SystemVariables
Auto Trait Implementations§
impl Freeze for SystemVariables
impl RefUnwindSafe for SystemVariables
impl Send for SystemVariables
impl Sync for SystemVariables
impl Unpin for SystemVariables
impl UnwindSafe for SystemVariables
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more