Builder: set the target path.
(mut self, path: impl Into<String>)
| 166 | |
| 167 | /// Builder: set the target path. |
| 168 | pub fn with_path(mut self, path: impl Into<String>) -> Self { |
| 169 | self.path = Some(path.into()); |
| 170 | self |
| 171 | } |
| 172 | |
| 173 | /// Builder: set the view name. |
| 174 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls