pub struct ActiveIncident {
pub id: String,
pub severity: String,
pub summary: String,
pub started_at: i64,
pub acknowledged: bool,
}Fields§
§id: String§severity: String§summary: String§started_at: i64§acknowledged: boolTrait Implementations§
Source§impl Clone for ActiveIncident
impl Clone for ActiveIncident
Source§fn clone(&self) -> ActiveIncident
fn clone(&self) -> ActiveIncident
Returns a duplicate of the value. Read more
1.0.0 · 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 ActiveIncident
impl Debug for ActiveIncident
Source§impl<'de> Deserialize<'de> for ActiveIncident
impl<'de> Deserialize<'de> for ActiveIncident
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 ActiveIncident
impl RefUnwindSafe for ActiveIncident
impl Send for ActiveIncident
impl Sync for ActiveIncident
impl Unpin for ActiveIncident
impl UnsafeUnpin for ActiveIncident
impl UnwindSafe for ActiveIncident
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