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