(id: QuestionId, title: String, content: String, tags: Option<Vec<String>>)
| 25 | |
| 26 | impl Question { |
| 27 | fn new(id: QuestionId, title: String, content: String, tags: Option<Vec<String>>) -> Self { |
| 28 | Question { |
| 29 | id, |
| 30 | title, |
| 31 | content, |
| 32 | tags, |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | impl FromStr for QuestionId { |
nothing calls this directly
no outgoing calls
no test coverage detected