(id: QuestionId, title: String, content: String, tags: Option<Vec<String>>)
| 16 | |
| 17 | impl Question { |
| 18 | fn new(id: QuestionId, title: String, content: String, tags: Option<Vec<String>>) -> Self { |
| 19 | Question { |
| 20 | id, |
| 21 | title, |
| 22 | content, |
| 23 | tags, |
| 24 | } |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | impl FromStr for QuestionId { |
nothing calls this directly
no outgoing calls
no test coverage detected