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