1 use async_stream::stream; 2 main()3 fn main() { 4 stream! { 5 let f = async { 6 yield 123; 7 }; 8 9 let v = f.await; 10 }; 11 } 12