Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 232 | |
| 233 | /// Builder: set the timeout in seconds. |
| 234 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 235 | self.timeout = timeout; |
| 236 | self |
| 237 | } |
| 238 | |
| 239 | /// Builder: set the download-only flag. |
| 240 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
no outgoing calls