| 12 | |
| 13 | #[derive(Deserialize, Serialize, Debug, Clone)] |
| 14 | struct Question { |
| 15 | id: QuestionId, |
| 16 | title: String, |
| 17 | content: String, |
| 18 | tags: Option<Vec<String>>, |
| 19 | } |
| 20 | #[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq, Hash)] |
| 21 | struct QuestionId(String); |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected