pub struct ClickStackSelectItemResponse {
pub agg_fn: Option<ClickStackSelectItemAggfn>,
pub alias: Option<String>,
pub level: Option<ClickStackSelectItemLevel>,
pub metric_name: Option<String>,
pub metric_type: Option<ClickStackSelectItemMetrictype>,
pub number_format: Option<ClickStackNumberFormatResponse>,
pub period_agg_fn: Option<ClickStackSelectItemPeriodaggfn>,
pub value_expression: Option<String>,
pub where: Option<String>,
pub where_language: Option<ClickStackSelectItemWherelanguage>,
}Expand description
ClickStackSelectItem from the ClickHouse Cloud API, in response position.
Response variant of ClickStackSelectItem: every field is Option<T>, so a field
the API drops or sends as null deserializes to None instead of
failing.
Fields§
§agg_fn: Option<ClickStackSelectItemAggfn>§alias: Option<String>§level: Option<ClickStackSelectItemLevel>§metric_name: Option<String>§metric_type: Option<ClickStackSelectItemMetrictype>§number_format: Option<ClickStackNumberFormatResponse>§period_agg_fn: Option<ClickStackSelectItemPeriodaggfn>§value_expression: Option<String>§where: Option<String>§where_language: Option<ClickStackSelectItemWherelanguage>Trait Implementations§
Source§impl Clone for ClickStackSelectItemResponse
impl Clone for ClickStackSelectItemResponse
Source§fn clone(&self) -> ClickStackSelectItemResponse
fn clone(&self) -> ClickStackSelectItemResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClickStackSelectItemResponse
impl Debug for ClickStackSelectItemResponse
Source§impl Default for ClickStackSelectItemResponse
impl Default for ClickStackSelectItemResponse
Source§fn default() -> ClickStackSelectItemResponse
fn default() -> ClickStackSelectItemResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackSelectItemResponse
impl<'de> Deserialize<'de> for ClickStackSelectItemResponse
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
impl StructuralPartialEq for ClickStackSelectItemResponse
Auto Trait Implementations§
impl Freeze for ClickStackSelectItemResponse
impl RefUnwindSafe for ClickStackSelectItemResponse
impl Send for ClickStackSelectItemResponse
impl Sync for ClickStackSelectItemResponse
impl Unpin for ClickStackSelectItemResponse
impl UnsafeUnpin for ClickStackSelectItemResponse
impl UnwindSafe for ClickStackSelectItemResponse
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