(mut self, timeout: Duration)
| 174 | } |
| 175 | |
| 176 | pub fn request_timeout(mut self, timeout: Duration) -> Self { |
| 177 | self.request_timeout = Some(timeout); |
| 178 | self |
| 179 | } |
| 180 | |
| 181 | /// Override the per-read size ceiling. `0` is rejected at backend |
| 182 | /// construction time as a configuration mistake. See [`DEFAULT_MAX_READ_BYTES`]. |
no outgoing calls