Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 326 | |
| 327 | /// Builder: set the timeout in seconds. |
| 328 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 329 | self.timeout = timeout; |
| 330 | self |
| 331 | } |
| 332 | |
| 333 | /// Builder: set the download-only flag. |
| 334 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
no outgoing calls