Builder: set the download-only flag.
(mut self, download_only: bool)
| 249 | |
| 250 | /// Builder: set the download-only flag. |
| 251 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
| 252 | self.download_only = download_only; |
| 253 | self |
| 254 | } |
| 255 | |
| 256 | /// Builder: bootstrap an existing Git checkout. |
| 257 | pub fn with_into_existing(mut self, into_existing: bool) -> Self { |
no outgoing calls