pub struct QueryParameterType {
pub array_type: Option<Option<Box<QueryParameterType>>>,
pub range_element_type: Option<Option<Box<QueryParameterType>>>,
pub struct_types: Option<Vec<QueryParameterTypeStructTypes>>,
pub timestamp_precision: Option<i64>,
pub type_: Option<String>,
}Expand description
The type of a query parameter.
This type is not used in any activity, and only used as part of another schema.
Fields§
§array_type: Option<Option<Box<QueryParameterType>>>Optional. The type of the array’s elements, if this is an array.
range_element_type: Option<Option<Box<QueryParameterType>>>Optional. The element type of the range, if this is a range.
struct_types: Option<Vec<QueryParameterTypeStructTypes>>Optional. The types of the fields of this struct, in order, if this is a struct.
timestamp_precision: Option<i64>Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type. Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For TIMESTAMP type with picosecond precision)
type_: Option<String>Required. The top level type of this field.
Trait Implementations§
Source§impl Clone for QueryParameterType
impl Clone for QueryParameterType
Source§fn clone(&self) -> QueryParameterType
fn clone(&self) -> QueryParameterType
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 QueryParameterType
impl Debug for QueryParameterType
Source§impl Default for QueryParameterType
impl Default for QueryParameterType
Source§fn default() -> QueryParameterType
fn default() -> QueryParameterType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryParameterType
impl<'de> Deserialize<'de> for QueryParameterType
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 QueryParameterType
impl Serialize for QueryParameterType
impl Part for QueryParameterType
Auto Trait Implementations§
impl Freeze for QueryParameterType
impl RefUnwindSafe for QueryParameterType
impl Send for QueryParameterType
impl Sync for QueryParameterType
impl Unpin for QueryParameterType
impl UnwindSafe for QueryParameterType
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