pub enum Skip {
Date(Date),
DateRange(Date, Date),
Day(Vec<u8>),
DayRange(usize, usize),
Time(Time),
TimeRange(Time, Time),
None,
}Variants§
Date(Date)
skip fixed date
DateRange(Date, Date)
skip date range
Day(Vec<u8>)
skip days
1: Monday, 2: Tuesday, 3: Wednesday, 4: Thursday, 5: Friday, 6: Saturday, 7: Sunday
DayRange(usize, usize)
skip days range
1: Monday, 2: Tuesday, 3: Wednesday, 4: Thursday, 5: Friday, 6: Saturday, 7: Sunday
Time(Time)
skip fixed time
TimeRange(Time, Time)
skip time range
end must be greater than start
None
no skip
Implementations§
Trait Implementations§
impl StructuralPartialEq for Skip
Auto Trait Implementations§
impl Freeze for Skip
impl RefUnwindSafe for Skip
impl Send for Skip
impl Sync for Skip
impl Unpin for Skip
impl UnwindSafe for Skip
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