Do all futures have to be lazy? – Coroutines and async/awaitDo all futures have to be lazy? – Coroutines and async/await
A lazy future is one where no work happens before it’s polled the first time. This will come up a lot if you read about futures in Rust, and since