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