Set a prefix for all paths.
(mut self, prefix: impl Into<String>)
| 323 | |
| 324 | /// Set a prefix for all paths. |
| 325 | pub fn with_prefix(mut self, prefix: impl Into<String>) -> Self { |
| 326 | self.prefix = Some(prefix.into()); |
| 327 | self |
| 328 | } |
| 329 | |
| 330 | /// Add include patterns. |
| 331 | pub fn include(mut self, patterns: &[&str]) -> Self { |
no outgoing calls