Builder: set the path filter.
(mut self, path: impl Into<String>)
| 211 | |
| 212 | /// Builder: set the path filter. |
| 213 | pub fn with_path(mut self, path: impl Into<String>) -> Self { |
| 214 | self.path = Some(path.into()); |
| 215 | self |
| 216 | } |
| 217 | |
| 218 | /// Builder: set short output mode. |
| 219 | pub fn with_short(mut self, short: bool) -> Self { |
no outgoing calls