| 30 | |
| 31 | impl CgConfig { |
| 32 | pub(crate) fn find_by_name(&self, name: &str) -> Option<&(usize, u64)> { |
| 33 | self.cg_by_name.get(name) |
| 34 | } |
| 35 | |
| 36 | pub(crate) fn find_by_id(&self, index: u64) -> Option<&(String, u64)> { |
| 37 | self.cg_by_id.get(&(index as usize)) |
nothing calls this directly
no outgoing calls
no test coverage detected