Set include patterns
(mut self, patterns: Vec<String>)
| 73 | |
| 74 | /// Set include patterns |
| 75 | pub fn with_include_patterns(mut self, patterns: Vec<String>) -> Self { |
| 76 | self.include_patterns = patterns; |
| 77 | self |
| 78 | } |
| 79 | |
| 80 | /// Set exclude patterns |
| 81 | pub fn with_exclude_patterns(mut self, patterns: Vec<String>) -> Self { |
no outgoing calls