blob: b10b2df06b4ca68eac11e69786098ac10c8e23e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use std::fmt;
#[derive(Debug)]
pub enum Job {
MonthlyPayment,
}
impl fmt::Display for Job {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", self)
}
}
|