(&self, path: &str)
| 373 | /// Check if a path should be included based on the configured paths filter. |
| 374 | #[must_use] |
| 375 | pub fn should_include(&self, path: &str) -> bool { |
| 376 | if self.all || self.paths.is_empty() { |
| 377 | return true; |
| 378 | } |
| 379 | self.paths |
| 380 | .iter() |
| 381 | .any(|p| path == p || path.starts_with(&format!("{}/", p))) |
| 382 | } |
| 383 | |
| 384 | /// Convert to core recording options. |
| 385 | #[must_use] |
no test coverage detected