pub struct HolidayDaylightSavings {
pub leap_year: bool,
pub daylight_savings_start: String,
pub daylight_savings_end: String,
pub holidays: Vec<Holiday>,
}Fields§
§leap_year: bool§daylight_savings_start: String§daylight_savings_end: String§holidays: Vec<Holiday>Trait Implementations§
Auto Trait Implementations§
impl Freeze for HolidayDaylightSavings
impl RefUnwindSafe for HolidayDaylightSavings
impl Send for HolidayDaylightSavings
impl Sync for HolidayDaylightSavings
impl Unpin for HolidayDaylightSavings
impl UnwindSafe for HolidayDaylightSavings
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