Override the per-search download concurrency. See [`DEFAULT_SEARCH_CONCURRENCY`]. `0` resets to the default at backend construction.
(mut self, n: usize)
| 211 | /// [`DEFAULT_SEARCH_CONCURRENCY`]. `0` resets to the default at backend |
| 212 | /// construction. |
| 213 | pub fn search_concurrency(mut self, n: usize) -> Self { |
| 214 | self.search_concurrency = Some(n); |
| 215 | self |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | /// S3-compatible workspace backend. |
no outgoing calls