pub struct StatusDto {
pub id: i32,
pub maintenance_status: MaintenanceStatus,
pub incident_severity: IncidentSeverity,
pub titles: Vec<ContentDto>,
pub updates: Vec<UpdateDto>,
pub created_at: String,
pub archive_at: Option<String>,
pub updated_at: Option<String>,
pub platforms: Vec<Platform>,
}Fields§
§id: i32§maintenance_status: MaintenanceStatus§incident_severity: IncidentSeverity§titles: Vec<ContentDto>§updates: Vec<UpdateDto>§created_at: String§archive_at: Option<String>§updated_at: Option<String>§platforms: Vec<Platform>Trait Implementations§
source§impl<'de> Deserialize<'de> for StatusDto
impl<'de> Deserialize<'de> for StatusDto
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 RefUnwindSafe for StatusDto
impl Send for StatusDto
impl Sync for StatusDto
impl Unpin for StatusDto
impl UnwindSafe for StatusDto
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