Builder: set path filter.
(mut self, path: impl Into<String>)
| 700 | |
| 701 | /// Builder: set path filter. |
| 702 | pub fn path(mut self, path: impl Into<String>) -> Self { |
| 703 | self.path = Some(path.into()); |
| 704 | self |
| 705 | } |
| 706 | |
| 707 | /// Builder: set view filter. |
| 708 | pub fn view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls