extern crate alloc; use super::TallyID; use alloc::collections::BTreeMap; use alloc::string::String; pub struct Name { pub first: String, pub last: String, } pub struct IDMapping { id_map: BTreeMap, } impl IDMapping { pub fn new() -> Self { IDMapping { id_map: BTreeMap::new(), } } pub fn map(&self, id: &TallyID) -> Option<&Name> { self.id_map.get(id) } pub fn add_mapping(&mut self, id: TallyID, name: Name) { self.id_map.insert(id, name); } }