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