Lines Matching refs:oneshot
18 use futures::channel::oneshot; in join()
22 let (tx1, rx1) = oneshot::channel::<i32>(); in join()
23 let (tx2, rx2) = oneshot::channel::<i32>(); in join()
43 use futures::channel::oneshot; in select()
47 let (tx1, rx1) = oneshot::channel::<i32>(); in select()
48 let (_tx2, rx2) = oneshot::channel::<i32>(); in select()
65 use futures::channel::oneshot; in select_biased()
70 let (tx1, rx1) = oneshot::channel::<i32>(); in select_biased()
71 let (_tx2, rx2) = oneshot::channel::<i32>(); in select_biased()
138 use futures::channel::oneshot; in select_can_move_uncompleted_futures()
142 let (tx1, rx1) = oneshot::channel::<i32>(); in select_can_move_uncompleted_futures()
143 let (tx2, rx2) = oneshot::channel::<i32>(); in select_can_move_uncompleted_futures()