(mut self, files: Vec<PathBuf>)
| 499 | /// Set the deleted files list. |
| 500 | #[must_use] |
| 501 | pub fn with_deleted(mut self, files: Vec<PathBuf>) -> Self { |
| 502 | self.deleted = files; |
| 503 | self |
| 504 | } |
| 505 | |
| 506 | /// Set the timestamp. |
| 507 | #[must_use] |
no outgoing calls