pub struct EventTime {
pub start_time: Option<String>,
pub stop_time: Option<String>,
}Expand description
The start and stop times of an event. This is used to indicate the time period for which a spectrum profile is valid.
Both times are expressed using the format, YYYY-MM-DDThh:mm:ssZ, as defined in RFC3339. The times must be expressed using UTC.
This type is not used in any activity, and only used as part of another schema.
Fields§
§start_time: Option<String>The inclusive start of the event. It will be present.
stop_time: Option<String>The exclusive end of the event. It will be present.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EventTime
impl<'de> Deserialize<'de> for EventTime
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
impl Part for EventTime
Auto Trait Implementations§
impl Freeze for EventTime
impl RefUnwindSafe for EventTime
impl Send for EventTime
impl Sync for EventTime
impl Unpin for EventTime
impl UnwindSafe for EventTime
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