(title: &str, content: &str)
| 35 | |
| 36 | impl TodoItem { |
| 37 | pub fn new(title: &str, content: &str) -> Self { |
| 38 | create_todo_item(title, content) |
| 39 | } |
| 40 | |
| 41 | // pub fn serializer(&self) -> String { |
| 42 | // serde_json::to_string(self).unwrap() |
nothing calls this directly
no test coverage detected