pub struct DaySelector {
pub year: Vec<YearRange>,
pub monthday: Vec<MonthdayRange>,
pub week: Vec<WeekRange>,
pub weekday: Vec<WeekDayRange>,
}
Fields§
§year: Vec<YearRange>
§monthday: Vec<MonthdayRange>
§week: Vec<WeekRange>
§weekday: Vec<WeekDayRange>
Implementations§
Trait Implementations§
Source§impl Clone for DaySelector
impl Clone for DaySelector
Source§fn clone(&self) -> DaySelector
fn clone(&self) -> DaySelector
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 DaySelector
impl Debug for DaySelector
Source§impl Default for DaySelector
impl Default for DaySelector
Source§fn default() -> DaySelector
fn default() -> DaySelector
Returns the “default value” for a type. Read more
Source§impl Display for DaySelector
impl Display for DaySelector
Source§impl Hash for DaySelector
impl Hash for DaySelector
Source§impl PartialEq for DaySelector
impl PartialEq for DaySelector
impl Eq for DaySelector
impl StructuralPartialEq for DaySelector
Auto Trait Implementations§
impl Freeze for DaySelector
impl RefUnwindSafe for DaySelector
impl Send for DaySelector
impl Sync for DaySelector
impl Unpin for DaySelector
impl UnwindSafe for DaySelector
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