Is it possible to allow users to avoid boxed futures by using the [async fn in traits](https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits/) feature? First such trait I ran into which this would apply to is called `QueryParser` (`pgwire::api::stmt::QueryParser`), but there are many in this crate.
Is it possible to allow users to avoid boxed futures by using the async fn in traits feature?
First such trait I ran into which this would apply to is called
QueryParser(pgwire::api::stmt::QueryParser), but there are many in this crate.