Add command pattern filter
(mut self, pattern: impl Into<String>)
| 89 | |
| 90 | /// Add command pattern filter |
| 91 | pub fn with_command(mut self, pattern: impl Into<String>) -> Self { |
| 92 | self.command_pattern = Some(pattern.into()); |
| 93 | self |
| 94 | } |
| 95 | |
| 96 | /// Add session filter |
| 97 | pub fn with_session(mut self, id: impl Into<String>) -> Self { |
no outgoing calls