Enable overwriting existing destination.
(mut self, overwrite: bool)
| 341 | |
| 342 | /// Enable overwriting existing destination. |
| 343 | pub fn overwrite(mut self, overwrite: bool) -> Self { |
| 344 | self.overwrite = overwrite; |
| 345 | self |
| 346 | } |
| 347 | |
| 348 | /// Set maximum file count. |
| 349 | pub fn max_files(mut self, max: usize) -> Self { |
no outgoing calls