Builder: set path filter.
(mut self, path: impl Into<String>)
| 683 | |
| 684 | /// Builder: set path filter. |
| 685 | pub fn path(mut self, path: impl Into<String>) -> Self { |
| 686 | self.path = Some(path.into()); |
| 687 | self |
| 688 | } |
| 689 | |
| 690 | /// Builder: set view filter. |
| 691 | pub fn view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls