pub trait DayFilter {
// Required methods
fn start(&self) -> String;
fn end(&self) -> String;
fn filter_day(&self, day: Day) -> Option<Day>;
}
Expand description
Trait specifying common functionality for the different filter arguments.