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