Builder: set the timeout in seconds.
(mut self, timeout: u64)
| 184 | |
| 185 | /// Builder: set the timeout in seconds. |
| 186 | pub fn with_timeout(mut self, timeout: u64) -> Self { |
| 187 | self.timeout = timeout; |
| 188 | self |
| 189 | } |
| 190 | |
| 191 | /// Builder: set the download-only flag. |
| 192 | pub fn with_download_only(mut self, download_only: bool) -> Self { |
no outgoing calls