pub struct ClickStackSelectItem {
pub agg_fn: ClickStackSelectItemAggfn,
pub alias: Option<String>,
pub level: Option<ClickStackSelectItemLevel>,
pub metric_name: Option<String>,
pub metric_type: Option<ClickStackSelectItemMetrictype>,
pub number_format: Option<ClickStackNumberFormat>,
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.
Fields§
§agg_fn: ClickStackSelectItemAggfn§alias: Option<String>§level: Option<ClickStackSelectItemLevel>§metric_name: Option<String>§metric_type: Option<ClickStackSelectItemMetrictype>§number_format: Option<ClickStackNumberFormat>§period_agg_fn: Option<ClickStackSelectItemPeriodaggfn>§value_expression: Option<String>§where: Option<String>§where_language: Option<ClickStackSelectItemWherelanguage>Trait Implementations§
Source§impl Clone for ClickStackSelectItem
impl Clone for ClickStackSelectItem
Source§fn clone(&self) -> ClickStackSelectItem
fn clone(&self) -> ClickStackSelectItem
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 ClickStackSelectItem
impl Debug for ClickStackSelectItem
Source§impl Default for ClickStackSelectItem
impl Default for ClickStackSelectItem
Source§fn default() -> ClickStackSelectItem
fn default() -> ClickStackSelectItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackSelectItem
impl<'de> Deserialize<'de> for ClickStackSelectItem
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 PartialEq for ClickStackSelectItem
impl PartialEq for ClickStackSelectItem
Source§fn eq(&self, other: &ClickStackSelectItem) -> bool
fn eq(&self, other: &ClickStackSelectItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClickStackSelectItem
impl Serialize for ClickStackSelectItem
impl StructuralPartialEq for ClickStackSelectItem
Auto Trait Implementations§
impl Freeze for ClickStackSelectItem
impl RefUnwindSafe for ClickStackSelectItem
impl Send for ClickStackSelectItem
impl Sync for ClickStackSelectItem
impl Unpin for ClickStackSelectItem
impl UnsafeUnpin for ClickStackSelectItem
impl UnwindSafe for ClickStackSelectItem
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