Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 243 | |
| 244 | /// Builder: set the timeout in seconds. |
| 245 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 246 | self.timeout = timeout; |
| 247 | self |
| 248 | } |
| 249 | |
| 250 | /// Builder: set the download-only flag. |
| 251 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
no outgoing calls