| 22 | |
| 23 | #[derive(Deserialize, Serialize, Debug, Clone)] |
| 24 | struct NewQuestion { |
| 25 | title: String, |
| 26 | content: String, |
| 27 | tags: Option<Vec<String>>, |
| 28 | } |
| 29 | |
| 30 | #[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq, Hash)] |
| 31 | struct AnswerId(String); |
nothing calls this directly
no outgoing calls
no test coverage detected