pub struct TimeWindow {
pub start: Option<String>,
pub end: Option<String>,
}Expand description
TimeWindow : The start and end time that specifies the time interval of an event.
Fields§
§start: Option<String>The start time of the time window.
end: Option<String>The end time of the time window.
Implementations§
Source§impl TimeWindow
impl TimeWindow
Sourcepub fn new() -> TimeWindow
pub fn new() -> TimeWindow
The start and end time that specifies the time interval of an event.
Trait Implementations§
Source§impl Clone for TimeWindow
impl Clone for TimeWindow
Source§fn clone(&self) -> TimeWindow
fn clone(&self) -> TimeWindow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimeWindow
impl Debug for TimeWindow
Source§impl Default for TimeWindow
impl Default for TimeWindow
Source§fn default() -> TimeWindow
fn default() -> TimeWindow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeWindow
impl<'de> Deserialize<'de> for TimeWindow
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 PartialEq for TimeWindow
impl PartialEq for TimeWindow
Source§impl Serialize for TimeWindow
impl Serialize for TimeWindow
impl StructuralPartialEq for TimeWindow
Auto Trait Implementations§
impl Freeze for TimeWindow
impl RefUnwindSafe for TimeWindow
impl Send for TimeWindow
impl Sync for TimeWindow
impl Unpin for TimeWindow
impl UnwindSafe for TimeWindow
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