pub struct GetMiscHolidayCalendarParams {
pub date_query: Option<String>,
pub month_query: Option<String>,
pub year_query: Option<String>,
pub timezone_query: Option<String>,
pub holiday_type_query: Option<String>,
pub include_nearby_query: Option<String>,
pub nearby_limit_query: Option<String>,
}Fields§
§date_query: Option<String>§month_query: Option<String>§year_query: Option<String>§timezone_query: Option<String>§holiday_type_query: Option<String>§include_nearby_query: Option<String>§nearby_limit_query: Option<String>Implementations§
Source§impl GetMiscHolidayCalendarParams
impl GetMiscHolidayCalendarParams
pub fn new() -> Self
pub fn date_query(self, value: impl Into<String>) -> Self
pub fn month_query(self, value: impl Into<String>) -> Self
pub fn year_query(self, value: impl Into<String>) -> Self
pub fn timezone_query(self, value: impl Into<String>) -> Self
pub fn holiday_type_query(self, value: impl Into<String>) -> Self
pub fn include_nearby_query(self, value: impl Into<String>) -> Self
pub fn nearby_limit_query(self, value: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for GetMiscHolidayCalendarParams
impl Clone for GetMiscHolidayCalendarParams
Source§fn clone(&self) -> GetMiscHolidayCalendarParams
fn clone(&self) -> GetMiscHolidayCalendarParams
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 moreAuto Trait Implementations§
impl Freeze for GetMiscHolidayCalendarParams
impl RefUnwindSafe for GetMiscHolidayCalendarParams
impl Send for GetMiscHolidayCalendarParams
impl Sync for GetMiscHolidayCalendarParams
impl Unpin for GetMiscHolidayCalendarParams
impl UnsafeUnpin for GetMiscHolidayCalendarParams
impl UnwindSafe for GetMiscHolidayCalendarParams
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