| 42 | |
| 43 | #[derive(Clone, Debug, Deserialize, Serialize)] |
| 44 | struct Question { |
| 45 | id: QuestionId, |
| 46 | title: String, |
| 47 | content: String, |
| 48 | tags: Option<Vec<String>>, |
| 49 | } |
| 50 | |
| 51 | #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, Hash)] |
| 52 | struct QuestionId(String); |
nothing calls this directly
no outgoing calls
no test coverage detected