Builder: set the download-only flag.
(mut self, download_only: bool)
| 238 | |
| 239 | /// Builder: set the download-only flag. |
| 240 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
| 241 | self.download_only = download_only; |
| 242 | self |
| 243 | } |
| 244 | |
| 245 | /// Builder: set an explicit identity name override. |
| 246 | pub fn with_identity(mut self, identity: impl Into<String>) -> Self { |
no outgoing calls