Set whether to ignore missing files. # Arguments `ignore` - Whether to skip missing files without error
(mut self, ignore: bool)
| 239 | /// |
| 240 | /// * `ignore` - Whether to skip missing files without error |
| 241 | pub fn with_ignore_missing(mut self, ignore: bool) -> Self { |
| 242 | self.ignore_missing = ignore; |
| 243 | self |
| 244 | } |
| 245 | |
| 246 | // Getters |
| 247 |
no outgoing calls