pub struct BusinessHoliday {
pub type: Option<IncludedExcluded>,
pub count: Option<i32>,
pub list: Option<Vec<Holiday>>,
}Expand description
A holiday event which occurs in a requested period.
Fields§
§type: Option<IncludedExcluded>Specifying whether or not the holidays in the result list were included or excluded when queried.
count: Option<i32>The number of holidays in the results.
list: Option<Vec<Holiday>>Holidays which occur in the requested period.
Trait Implementations§
Source§impl Debug for BusinessHoliday
impl Debug for BusinessHoliday
Source§impl<'de> Deserialize<'de> for BusinessHoliday
impl<'de> Deserialize<'de> for BusinessHoliday
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 BusinessHoliday
impl RefUnwindSafe for BusinessHoliday
impl Send for BusinessHoliday
impl Sync for BusinessHoliday
impl Unpin for BusinessHoliday
impl UnwindSafe for BusinessHoliday
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