ethe opened a new pull request, #6748:
URL: https://github.com/apache/arrow-rs/pull/6748
In the current,
```rust
impl AsyncFileReader for Box<dyn AsyncFileReader> {
...
}
```
equals to
```rust
impl AsyncFileReader for Box<dyn AsyncFileReader + 'static> {
...
}
```
which `'static` bound is not necessary, I removed this requirement to make
it more trivial
--
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]