pub struct ClickStackConnection {
pub created_at: Option<DateTime<Utc>>,
pub host: Option<String>,
pub hyperdx_setting_prefix: Option<String>,
pub id: Option<String>,
pub is_prometheus_endpoint: Option<bool>,
pub name: Option<String>,
pub updated_at: Option<DateTime<Utc>>,
pub username: Option<String>,
}Expand description
ClickStackConnection from the ClickHouse Cloud API.
Used in response position only: every field is Option<T>, so a field the
API drops or sends as null deserializes to None instead of failing.
Fields§
§created_at: Option<DateTime<Utc>>§host: Option<String>§hyperdx_setting_prefix: Option<String>§id: Option<String>§is_prometheus_endpoint: Option<bool>§name: Option<String>§updated_at: Option<DateTime<Utc>>§username: Option<String>Trait Implementations§
Source§impl Clone for ClickStackConnection
impl Clone for ClickStackConnection
Source§fn clone(&self) -> ClickStackConnection
fn clone(&self) -> ClickStackConnection
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 Debug for ClickStackConnection
impl Debug for ClickStackConnection
Source§impl Default for ClickStackConnection
impl Default for ClickStackConnection
Source§fn default() -> ClickStackConnection
fn default() -> ClickStackConnection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackConnection
impl<'de> Deserialize<'de> for ClickStackConnection
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
Source§impl PartialEq for ClickStackConnection
impl PartialEq for ClickStackConnection
Source§impl Serialize for ClickStackConnection
impl Serialize for ClickStackConnection
impl StructuralPartialEq for ClickStackConnection
Auto Trait Implementations§
impl Freeze for ClickStackConnection
impl RefUnwindSafe for ClickStackConnection
impl Send for ClickStackConnection
impl Sync for ClickStackConnection
impl Unpin for ClickStackConnection
impl UnsafeUnpin for ClickStackConnection
impl UnwindSafe for ClickStackConnection
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