(mut self, question: Question)
| 35 | |
| 36 | |
| 37 | fn add_question(mut self, question: Question) -> Self { |
| 38 | self.questions.insert(question.id.clone(), question); |
| 39 | self |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | #[derive(Clone, Debug, Deserialize, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected