Add path pattern filter
(mut self, pattern: impl Into<String>)
| 83 | |
| 84 | /// Add path pattern filter |
| 85 | pub fn with_path(mut self, pattern: impl Into<String>) -> Self { |
| 86 | self.path_pattern = Some(pattern.into()); |
| 87 | self |
| 88 | } |
| 89 | |
| 90 | /// Add command pattern filter |
| 91 | pub fn with_command(mut self, pattern: impl Into<String>) -> Self { |
no outgoing calls