(mut self, files: Vec<PathBuf>)
| 507 | /// Set the deleted files list. |
| 508 | #[must_use] |
| 509 | pub fn with_deleted(mut self, files: Vec<PathBuf>) -> Self { |
| 510 | self.deleted = files; |
| 511 | self |
| 512 | } |
| 513 | |
| 514 | /// Set the timestamp. |
| 515 | #[must_use] |
no outgoing calls