Builder: set the project kind for .atomicignore template.
(mut self, kind: impl Into<String>)
| 368 | |
| 369 | /// Builder: set the project kind for .atomicignore template. |
| 370 | pub fn with_kind(mut self, kind: impl Into<String>) -> Self { |
| 371 | self.kind = Some(kind.into()); |
| 372 | self |
| 373 | } |
| 374 | |
| 375 | /// Builder: enable vault initialization. |
| 376 | pub fn with_vault(mut self) -> Self { |
no outgoing calls