Builder: set the target path.
(mut self, path: impl Into<String>)
| 236 | |
| 237 | /// Builder: set the target path. |
| 238 | pub fn with_path(mut self, path: impl Into<String>) -> Self { |
| 239 | self.path = Some(path.into()); |
| 240 | self |
| 241 | } |
| 242 | |
| 243 | /// Builder: set the view name. |
| 244 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls