pub struct RegionAlert {
pub id: i64,
pub alert_id: String,
pub source: String,
pub node_id: String,
pub region_cluster_id: Option<i64>,
pub severity: i64,
pub category: String,
pub title: String,
pub description: Option<String>,
pub event_time: String,
pub resolved_at: Option<String>,
pub created_at: Option<String>,
}Fields§
§id: i64§alert_id: String§source: String§node_id: String§region_cluster_id: Option<i64>§severity: i64§category: String§title: String§description: Option<String>§event_time: String§resolved_at: Option<String>§created_at: Option<String>Trait Implementations§
Source§impl Clone for RegionAlert
impl Clone for RegionAlert
Source§fn clone(&self) -> RegionAlert
fn clone(&self) -> RegionAlert
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 RegionAlert
impl Debug for RegionAlert
Source§impl<'de> Deserialize<'de> for RegionAlert
impl<'de> Deserialize<'de> for RegionAlert
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
Auto Trait Implementations§
impl Freeze for RegionAlert
impl RefUnwindSafe for RegionAlert
impl Send for RegionAlert
impl Sync for RegionAlert
impl Unpin for RegionAlert
impl UnsafeUnpin for RegionAlert
impl UnwindSafe for RegionAlert
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