pub struct TimeWindow {
pub start_hour: u8,
pub end_hour: u8,
pub days_of_week: Option<Vec<u8>>,
}Expand description
A UTC time window within which access is permitted.
start_hour / end_hour are in UTC (0–23, inclusive on both ends).
If days_of_week is set, only those days are permitted (0=Monday, 6=Sunday).
Fields§
§start_hour: u8Start hour (UTC, 0–23).
end_hour: u8End hour (UTC, 0–23, inclusive).
days_of_week: Option<Vec<u8>>Permitted days of week (0=Monday … 6=Sunday). None = every day.
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<'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
Auto Trait Implementations§
impl Freeze for TimeWindow
impl RefUnwindSafe for TimeWindow
impl Send for TimeWindow
impl Sync for TimeWindow
impl Unpin for TimeWindow
impl UnsafeUnpin 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