()
| 7 | |
| 8 | impl TodoItemFilter { |
| 9 | pub fn new() -> Self { |
| 10 | Self { |
| 11 | title: Option::None, |
| 12 | content: Option::None, |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | pub fn set_title<T: Into<String>>(&mut self, title: T) { |
| 17 | self.title = Some(title.into()); |
nothing calls this directly
no outgoing calls
no test coverage detected