pub struct ClickStackHeatmapSelectItemResponse {
pub count_expression: Option<String>,
pub heatmap_scale_type: Option<ClickStackHeatmapSelectItemHeatmapscaletype>,
pub value_expression: Option<String>,
}Expand description
ClickStackHeatmapSelectItem from the ClickHouse Cloud API, in response position.
Response variant of ClickStackHeatmapSelectItem: every field is Option<T>, so a field
the API drops or sends as null deserializes to None instead of
failing.
Fields§
§count_expression: Option<String>§heatmap_scale_type: Option<ClickStackHeatmapSelectItemHeatmapscaletype>§value_expression: Option<String>Trait Implementations§
Source§impl Clone for ClickStackHeatmapSelectItemResponse
impl Clone for ClickStackHeatmapSelectItemResponse
Source§fn clone(&self) -> ClickStackHeatmapSelectItemResponse
fn clone(&self) -> ClickStackHeatmapSelectItemResponse
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 Default for ClickStackHeatmapSelectItemResponse
impl Default for ClickStackHeatmapSelectItemResponse
Source§fn default() -> ClickStackHeatmapSelectItemResponse
fn default() -> ClickStackHeatmapSelectItemResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackHeatmapSelectItemResponse
impl<'de> Deserialize<'de> for ClickStackHeatmapSelectItemResponse
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 ClickStackHeatmapSelectItemResponse
Auto Trait Implementations§
impl Freeze for ClickStackHeatmapSelectItemResponse
impl RefUnwindSafe for ClickStackHeatmapSelectItemResponse
impl Send for ClickStackHeatmapSelectItemResponse
impl Sync for ClickStackHeatmapSelectItemResponse
impl Unpin for ClickStackHeatmapSelectItemResponse
impl UnsafeUnpin for ClickStackHeatmapSelectItemResponse
impl UnwindSafe for ClickStackHeatmapSelectItemResponse
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