Set the title
(&mut self, title: impl Into<String>)
| 567 | |
| 568 | /// Set the title |
| 569 | pub fn set_title(&mut self, title: impl Into<String>) { |
| 570 | self.title = title.into(); |
| 571 | self.touch(); |
| 572 | } |
| 573 | |
| 574 | /// Set the archived status |
| 575 | pub fn set_archived(&mut self, time: Option<i64>) { |
no test coverage detected