pub struct BusinessOpeningHours {
pub time_zone_name: String,
pub opening_hours: Vec<BusinessOpeningHoursInterval>,
}Expand description
Provides information about the opening hours of the business.
Fields§
§time_zone_name: StringUnique name of the time zone for which the opening hours are defined.
opening_hours: Vec<BusinessOpeningHoursInterval>List of time intervals describing business opening hours.
Implementations§
Source§impl BusinessOpeningHours
impl BusinessOpeningHours
Trait Implementations§
Source§impl Clone for BusinessOpeningHours
impl Clone for BusinessOpeningHours
Source§fn clone(&self) -> BusinessOpeningHours
fn clone(&self) -> BusinessOpeningHours
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 BusinessOpeningHours
impl Debug for BusinessOpeningHours
Source§impl<'de> Deserialize<'de> for BusinessOpeningHours
impl<'de> Deserialize<'de> for BusinessOpeningHours
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 BusinessOpeningHours
impl PartialEq for BusinessOpeningHours
Source§impl PartialOrd for BusinessOpeningHours
impl PartialOrd for BusinessOpeningHours
Source§impl Serialize for BusinessOpeningHours
impl Serialize for BusinessOpeningHours
impl StructuralPartialEq for BusinessOpeningHours
Auto Trait Implementations§
impl Freeze for BusinessOpeningHours
impl RefUnwindSafe for BusinessOpeningHours
impl Send for BusinessOpeningHours
impl Sync for BusinessOpeningHours
impl Unpin for BusinessOpeningHours
impl UnwindSafe for BusinessOpeningHours
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