(&mut self, value: String)
| 22 | } |
| 23 | |
| 24 | pub fn set_value(&mut self, value: String) { |
| 25 | self.value = value; |
| 26 | } |
| 27 | |
| 28 | pub fn get_value(&self) -> &str { |
| 29 | if self.value.is_empty() { |
nothing calls this directly
no outgoing calls
no test coverage detected