You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I love rust-clippy, but one lint which bugs me is future_not_send, because it reads
"future is not Send as this value is used across an await"
and (to me) it's unclear to what "this value" refers, or how to fix the problem
Would it be possible to make the future_not_send lint more clear / explanatory about what exactly is the value being held across the await and, if possible, guide async noobs like me to fix the issue so we could make the future in question implement Send properly?
Description
Hi, I love rust-clippy, but one lint which bugs me is
future_not_send
, because it readsand (to me) it's unclear to what "this value" refers, or how to fix the problem
Would it be possible to make the
future_not_send
lint more clear / explanatory about what exactly is the value being held across the await and, if possible, guide async noobs like me to fix the issue so we could make the future in question implement Send properly?future_not_send
Sorry, I don't have a great repro I can share right now, let me know if that's necessary and I'll try to come up with one
Version
Additional Labels
No response
The text was updated successfully, but these errors were encountered: