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