Hi So I want to call "poll_read" within an async fn, and if there was nothing to read yet then do something. So using await doesn't make sense.
I do want my function to be async, and not to write the outer future myself in terms of poll.
Is there a way to get the "Context" of the currently running async function, in order to use it to call "poll"?