gruuya opened a new issue, #4525: URL: https://github.com/apache/arrow-rs/issues/4525
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** Ideally, to implement the new `ObjectStore::get_opts` for other object stores based on `reqwest` clients, we could simply call `GetOptionsExt::with_get_options` on the `RequestBuilder`, as is done in the `object_store` crate itself. This is not currently possible (I assume inadvertently as the trait itself is public?), since the containing `client` mod is currently [private](https://github.com/apache/arrow-rs/blob/master/object_store/src/lib.rs#L245); **Describe the solution you'd like** Make the trait public/exportable beyond the `object_store` crate. **Describe alternatives you've considered** Repeat the logic from `GetOptionsExt::with_get_options`. **Additional context** Over at Seafowl we have a [custom HTTP object store](https://github.com/splitgraph/seafowl/blob/main/src/object_store/http.rs) implementation for legacy reasons. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
