Builder: set the target path.
(mut self, path: impl Into<String>)
| 225 | |
| 226 | /// Builder: set the target path. |
| 227 | pub fn with_path(mut self, path: impl Into<String>) -> Self { |
| 228 | self.path = Some(path.into()); |
| 229 | self |
| 230 | } |
| 231 | |
| 232 | /// Builder: set the view name. |
| 233 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls