pub struct EventStatusSchema {
pub status: String,
pub occurred_at: String,
}
Fields§
§status: String
The latest status of the event, updated by the API
occurred_at: String
The UTC timestamp of the latest status that was posted for the event, in ISO format
Trait Implementations§
Source§impl Debug for EventStatusSchema
impl Debug for EventStatusSchema
Source§impl<'de> Deserialize<'de> for EventStatusSchema
impl<'de> Deserialize<'de> for EventStatusSchema
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
Source§impl Display for EventStatusSchema
impl Display for EventStatusSchema
Auto Trait Implementations§
impl Freeze for EventStatusSchema
impl RefUnwindSafe for EventStatusSchema
impl Send for EventStatusSchema
impl Sync for EventStatusSchema
impl Unpin for EventStatusSchema
impl UnwindSafe for EventStatusSchema
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