Set exclude patterns
(mut self, patterns: Vec<String>)
| 79 | |
| 80 | /// Set exclude patterns |
| 81 | pub fn with_exclude_patterns(mut self, patterns: Vec<String>) -> Self { |
| 82 | self.exclude_patterns = patterns; |
| 83 | self |
| 84 | } |
| 85 | |
| 86 | /// Set max file size |
| 87 | pub fn with_max_file_size(mut self, size: usize) -> Self { |
no outgoing calls