Builder: set the download-only flag.
(mut self, download_only: bool)
| 260 | |
| 261 | /// Builder: set the download-only flag. |
| 262 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
| 263 | self.download_only = download_only; |
| 264 | self |
| 265 | } |
| 266 | |
| 267 | /// Builder: bootstrap an existing Git checkout. |
| 268 | pub fn with_into_existing(mut self, into_existing: bool) -> Self { |
no outgoing calls