Builder: set the target path.
(mut self, path: impl Into<String>)
| 258 | |
| 259 | /// Builder: set the target path. |
| 260 | pub fn with_path(mut self, path: impl Into<String>) -> Self { |
| 261 | self.path = Some(path.into()); |
| 262 | self |
| 263 | } |
| 264 | |
| 265 | /// Builder: set the view name. |
| 266 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls