pub const PAYEE_NAMES: &[&'static str] = &[ "Starting Balance", "Employer Ltd", "Tesco", ]; pub struct PayeeNamesDict { pub starting_balances: &'static str, pub employer: &'static str, pub tesco: &'static str, } pub const PAYEE_NAMES_DICT: PayeeNamesDict = PayeeNamesDict { starting_balances: PAYEE_NAMES[0], employer: PAYEE_NAMES[1], tesco: PAYEE_NAMES[2], };