Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 274 | |
| 275 | /// Builder: set the timeout in seconds. |
| 276 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 277 | self.timeout = timeout; |
| 278 | self |
| 279 | } |
| 280 | |
| 281 | /// Builder: set the download-only flag. |
| 282 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
no outgoing calls