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