pub struct TimeOfDay {
pub hour_of_day: Option<i32>,
pub minute_of_hour: Option<i32>,
pub second_of_minute: Option<i32>,
}Expand description
TimeOfDay : Denotes time of the day, used for defining opening or closing time of access points
Fields§
§hour_of_day: Option<i32>Denotes hour of the day, used for defining opening or closing time of access points
minute_of_hour: Option<i32>Denotes minute of the hour, used for defining opening or closing time of access points
second_of_minute: Option<i32>Denotes second of the minute, used for defining opening or closing time of access points
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TimeOfDay
impl<'de> Deserialize<'de> for TimeOfDay
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 StructuralPartialEq for TimeOfDay
Auto Trait Implementations§
impl Freeze for TimeOfDay
impl RefUnwindSafe for TimeOfDay
impl Send for TimeOfDay
impl Sync for TimeOfDay
impl Unpin for TimeOfDay
impl UnwindSafe for TimeOfDay
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