aboutsummaryrefslogtreecommitdiff
path: root/src/model/job.rs
blob: f31cfa0837dab40c4dd64557db90340db1477b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::fmt;

#[derive(Debug)]
pub enum Job {
    MonthlyPayment,
    WeeklyReport,
}

impl fmt::Display for Job {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}