pub struct ClickStackUpdateAlertRequest {Show 15 fields
pub channel: ClickStackAlertChannel,
pub dashboard_id: Option<String>,
pub group_by: Option<String>,
pub interval: ClickStackUpdateAlertRequestInterval,
pub message: Option<String>,
pub name: Option<String>,
pub note: Option<String>,
pub saved_search_id: Option<String>,
pub schedule_offset_minutes: Option<i64>,
pub schedule_start_at: Option<DateTime<Utc>>,
pub source: ClickStackUpdateAlertRequestSource,
pub threshold: f64,
pub threshold_max: Option<f64>,
pub threshold_type: ClickStackUpdateAlertRequestThresholdtype,
pub tile_id: Option<String>,
}Expand description
ClickStackUpdateAlertRequest from the ClickHouse Cloud API.
Fields§
§channel: ClickStackAlertChannel§dashboard_id: Option<String>§group_by: Option<String>§interval: ClickStackUpdateAlertRequestInterval§message: Option<String>§name: Option<String>§note: Option<String>§saved_search_id: Option<String>§schedule_offset_minutes: Option<i64>§schedule_start_at: Option<DateTime<Utc>>§source: ClickStackUpdateAlertRequestSource§threshold: f64§threshold_max: Option<f64>§threshold_type: ClickStackUpdateAlertRequestThresholdtype§tile_id: Option<String>Trait Implementations§
Source§impl Clone for ClickStackUpdateAlertRequest
impl Clone for ClickStackUpdateAlertRequest
Source§fn clone(&self) -> ClickStackUpdateAlertRequest
fn clone(&self) -> ClickStackUpdateAlertRequest
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 ClickStackUpdateAlertRequest
impl Debug for ClickStackUpdateAlertRequest
Source§impl Default for ClickStackUpdateAlertRequest
impl Default for ClickStackUpdateAlertRequest
Source§fn default() -> ClickStackUpdateAlertRequest
fn default() -> ClickStackUpdateAlertRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackUpdateAlertRequest
impl<'de> Deserialize<'de> for ClickStackUpdateAlertRequest
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 ClickStackUpdateAlertRequest
impl PartialEq for ClickStackUpdateAlertRequest
Source§fn eq(&self, other: &ClickStackUpdateAlertRequest) -> bool
fn eq(&self, other: &ClickStackUpdateAlertRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickStackUpdateAlertRequest
Auto Trait Implementations§
impl Freeze for ClickStackUpdateAlertRequest
impl RefUnwindSafe for ClickStackUpdateAlertRequest
impl Send for ClickStackUpdateAlertRequest
impl Sync for ClickStackUpdateAlertRequest
impl Unpin for ClickStackUpdateAlertRequest
impl UnsafeUnpin for ClickStackUpdateAlertRequest
impl UnwindSafe for ClickStackUpdateAlertRequest
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