ржавчина месяц до квартала

fn month_to_quarter(month: u8) -> u8 {
    (month + 2) / 3
}
Mackerel