-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not expose PollFn struct #79585
Do not expose PollFn struct #79585
Conversation
We don't need to expose PollFn struct to the public, returning `impl Future` is enought
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @cramertj (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
I oppose hiding return type. Other iterators/futures combinators are exposed, and the current one matches this. See also tokio-rs/tokio#2723. |
Sorry for questioning this dumb question, but what is the reason for exposing others iterators/future combinators return type? |
I just done reading tokio-rs/tokio#2723. EDIT: |
Hmm, after some thinking, I think it is still okay to not expose it, async fn something() {
// do something here
let some_variable = poll_fn(...).await;
// do something else here
} if anyone wants a concrete type, they should create their own type and implement the |
I disagree with the opinion that "async fns/blocks can't do that, so combinators don't have to do that". The current async-await is MVP (minimum viable product). One benefit of "can storing a return type" is that you can combine existing combinators to create a new combinator. Note that if the return type is not exposed, there is currently no stable efficient way to do this. (you need boxing) Also, note that EDIT: Closures can't be named in stable Rust, but if you don't capture the local variable, you can convert it to a function pointer. And there are also several ways to share values without going through local variables. |
I also dissagre with that, that is not my point. but, It also true that because so I will close it, not because of async/await is still MVP, I close it because thanks for the discussion |
Tracking issue: #72302.
We don't need to expose PollFn struct to the public, returning
impl Future
is enough