pub struct TimeOfDayRange {
pub earliest_time: Option<String>,
pub kind: Option<String>,
pub latest_time: Option<String>,
}Expand description
Two times in a single day defining a time range.
This type is not used in any activity, and only used as part of another schema.
Fields§
§earliest_time: Option<String>The earliest time of day in HH:MM format.
kind: Option<String>Identifies this as a time of day range object, representing two times in a single day defining a time range. Value: the fixed string qpxexpress#timeOfDayRange.
latest_time: Option<String>The latest time of day in HH:MM format.
Trait Implementations§
Source§impl Clone for TimeOfDayRange
impl Clone for TimeOfDayRange
Source§fn clone(&self) -> TimeOfDayRange
fn clone(&self) -> TimeOfDayRange
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 TimeOfDayRange
impl Debug for TimeOfDayRange
Source§impl Default for TimeOfDayRange
impl Default for TimeOfDayRange
Source§fn default() -> TimeOfDayRange
fn default() -> TimeOfDayRange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeOfDayRange
impl<'de> Deserialize<'de> for TimeOfDayRange
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 Serialize for TimeOfDayRange
impl Serialize for TimeOfDayRange
impl Part for TimeOfDayRange
Auto Trait Implementations§
impl Freeze for TimeOfDayRange
impl RefUnwindSafe for TimeOfDayRange
impl Send for TimeOfDayRange
impl Sync for TimeOfDayRange
impl Unpin for TimeOfDayRange
impl UnwindSafe for TimeOfDayRange
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