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