| 2 | 0, 1; None, Some(“Jane”)*/ |
| 3 | fn main() { |
| 4 | trait Dictionary<Key, Count> { |
| 5 | fn get(&self, key: Key) -> Option<String>; |
| 6 | fn count(&self, key: Key) -> Count; |
| 7 | } |
| 8 | struct Record { |
| 9 | id: u32, |
| 10 | name: String, |
nothing calls this directly
no outgoing calls
no test coverage detected