#[derive(Debug, Clone, Copy)]
pub struct Days {
pub monday: u8,
pub tuesday: u8,
pub wednesday: u8,
pub thursday: u8,
pub friday: u8,
pub saturday: u8,
pub sunday: u8,
pub all: u8,
pub week_days: u8,
pub weekend_days: u8,
pub none: u8,
}
pub const WEEK_DAYS: Days = Days {
monday: 0x01,
tuesday: 0x02,
wednesday: 0x04,
thursday: 0x08,
friday: 0x10,
saturday: 0x20,
sunday: 0x40,
all: 0x01 + 0x02 + 0x04 + 0x08 + 0x10 + 0x20 + 0x40,
week_days: 0x01 + 0x02 + 0x04 + 0x08 + 0x10,
weekend_days: 0x20 + 0x40,
none: 0x00,
};