Builder: set the initial view name.
(mut self, view: impl Into<String>)
| 355 | |
| 356 | /// Builder: set the initial view name. |
| 357 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 358 | self.view = view.into(); |
| 359 | self |
| 360 | } |
| 361 | |
| 362 | /// Builder: set the project kind for .atomicignore template. |
| 363 | pub fn with_kind(mut self, kind: impl Into<String>) -> Self { |
no outgoing calls