(mut self, pattern: impl Into<String>)
| 229 | } |
| 230 | |
| 231 | pub fn with_pattern(mut self, pattern: impl Into<String>) -> Self { |
| 232 | self.patterns.push(pattern.into()); |
| 233 | self |
| 234 | } |
| 235 | |
| 236 | pub fn with_patterns(mut self, patterns: Vec<String>) -> Self { |
| 237 | self.patterns = patterns; |
no outgoing calls
no test coverage detected