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