Builder: set the initial view name.
(mut self, view: impl Into<String>)
| 362 | |
| 363 | /// Builder: set the initial view name. |
| 364 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
| 365 | self.view = view.into(); |
| 366 | self |
| 367 | } |
| 368 | |
| 369 | /// Builder: set the project kind for .atomicignore template. |
| 370 | pub fn with_kind(mut self, kind: impl Into<String>) -> Self { |
no outgoing calls