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