Builder: set the project kind for .atomicignore template.
(mut self, kind: impl Into<String>)
| 361 | |
| 362 | /// Builder: set the project kind for .atomicignore template. |
| 363 | pub fn with_kind(mut self, kind: impl Into<String>) -> Self { |
| 364 | self.kind = Some(kind.into()); |
| 365 | self |
| 366 | } |
| 367 | |
| 368 | /// Builder: enable vault initialization. |
| 369 | pub fn with_vault(mut self) -> Self { |
no outgoing calls