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) } }