Set the matcher
(mut self, matcher: HookMatcher)
| 83 | |
| 84 | /// Set the matcher |
| 85 | pub fn with_matcher(mut self, matcher: HookMatcher) -> Self { |
| 86 | self.matcher = Some(matcher); |
| 87 | self |
| 88 | } |
| 89 | |
| 90 | /// Set the configuration |
| 91 | pub fn with_config(mut self, config: HookConfig) -> Self { |
no outgoing calls