pub struct Downtime {
pub id: Option<i64>,
pub scope: Option<Tags>,
pub start: Option<i64>,
pub end: Option<i64>,
pub message: Option<String>,
pub active: Option<bool>,
pub canceled: Option<i64>,
}Fields§
§id: Option<i64>§scope: Option<Tags>§start: Option<i64>§end: Option<i64>§message: Option<String>§active: Option<bool>§canceled: Option<i64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Downtime
impl<'de> Deserialize<'de> for Downtime
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 Downtime
impl RefUnwindSafe for Downtime
impl Send for Downtime
impl Sync for Downtime
impl Unpin for Downtime
impl UnwindSafe for Downtime
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