Home
last modified time | relevance | path

Searched refs:into_future (Results 1 – 4 of 4) sorted by relevance

/wasmtime-44.0.1/crates/test-programs/src/bin/
H A Dasync_transmit_caller.rs183 let next = Box::pin(callee_future_rx1.into_future()); in run()
198 assert_eq!(callee_future_rx1.into_future().await, "b"); in run()
218 let next = Box::pin(callee_future_rx2.into_future()); in run()
H A Dasync_transmit_callee.rs53 assert_eq!(caller_future_rx1.take().unwrap().into_future().await, value); in exchange()
H A Dfuzz_async.rs364 assert_eq!(assert_ready(pin!(reader.into_future())), payload.item); in run()
437 read: reader.into_future(), in run()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/concurrent/
H A Dfutures_and_streams.rs1551 pub fn into_future(self) -> FutureReader<T> { in into_future() function