pub struct WorkingHours {
pub days_of_week: Vec<DayOfWeek>,
pub start_time: String,
pub end_time: String,
pub time_zone: TimeZoneBase,
}
Fields§
§days_of_week: Vec<DayOfWeek>
§start_time: String
§end_time: String
§time_zone: TimeZoneBase
Trait Implementations§
Source§impl Clone for WorkingHours
impl Clone for WorkingHours
Source§fn clone(&self) -> WorkingHours
fn clone(&self) -> WorkingHours
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 WorkingHours
impl Debug for WorkingHours
Source§impl<'de> Deserialize<'de> for WorkingHours
impl<'de> Deserialize<'de> for WorkingHours
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 WorkingHours
impl PartialEq for WorkingHours
Source§impl Serialize for WorkingHours
impl Serialize for WorkingHours
impl Eq for WorkingHours
impl StructuralPartialEq for WorkingHours
Auto Trait Implementations§
impl Freeze for WorkingHours
impl RefUnwindSafe for WorkingHours
impl Send for WorkingHours
impl Sync for WorkingHours
impl Unpin for WorkingHours
impl UnwindSafe for WorkingHours
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