| 5 | |
| 6 | #[derive(Debug)] |
| 7 | struct Question { |
| 8 | id: QuestionId, |
| 9 | title: String, |
| 10 | content: String, |
| 11 | tags: Option<Vec<String>>, |
| 12 | } |
| 13 | |
| 14 | #[derive(Debug)] |
| 15 | struct QuestionId(String); |
nothing calls this directly
no outgoing calls
no test coverage detected