Builder: set the download-only flag.
(mut self, download_only: bool)
| 280 | |
| 281 | /// Builder: set the download-only flag. |
| 282 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
| 283 | self.download_only = download_only; |
| 284 | self |
| 285 | } |
| 286 | |
| 287 | /// Builder: bootstrap an existing Git checkout. |
| 288 | pub fn with_into_existing(mut self, into_existing: bool) -> Self { |
no outgoing calls