pub struct ClickStackAlertExecutionError {
pub message: Option<String>,
pub timestamp: Option<DateTime<Utc>>,
pub type: Option<ClickStackAlertExecutionErrorType>,
}Expand description
ClickStackAlertExecutionError 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§
§message: Option<String>§timestamp: Option<DateTime<Utc>>§type: Option<ClickStackAlertExecutionErrorType>Trait Implementations§
Source§impl Clone for ClickStackAlertExecutionError
impl Clone for ClickStackAlertExecutionError
Source§fn clone(&self) -> ClickStackAlertExecutionError
fn clone(&self) -> ClickStackAlertExecutionError
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 ClickStackAlertExecutionError
impl Default for ClickStackAlertExecutionError
Source§fn default() -> ClickStackAlertExecutionError
fn default() -> ClickStackAlertExecutionError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackAlertExecutionError
impl<'de> Deserialize<'de> for ClickStackAlertExecutionError
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 ClickStackAlertExecutionError
Auto Trait Implementations§
impl Freeze for ClickStackAlertExecutionError
impl RefUnwindSafe for ClickStackAlertExecutionError
impl Send for ClickStackAlertExecutionError
impl Sync for ClickStackAlertExecutionError
impl Unpin for ClickStackAlertExecutionError
impl UnsafeUnpin for ClickStackAlertExecutionError
impl UnwindSafe for ClickStackAlertExecutionError
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