Struct discord::model::Incident
[−]
[src]
pub struct Incident {
pub id: String,
pub impact: String,
pub monitoring_at: Option<String>,
pub name: String,
pub page_id: String,
pub short_link: String,
pub status: String,
pub incident_updates: Vec<IncidentUpdate>,
pub created_at: String,
pub resolved_at: Option<String>,
pub updated_at: String,
}An incident retrieved from the Discord status page.
Fields
id: String
impact: String
monitoring_at: Option<String>
name: String
page_id: String
short_link: String
status: String
incident_updates: Vec<IncidentUpdate>
created_at: String
resolved_at: Option<String>
updated_at: String
Trait Implementations
impl Debug for Incident[src]
impl Clone for Incident[src]
fn clone(&self) -> Incident
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more