Searched defs:UnboundedReceiver (Results 1 – 4 of 4) sorted by relevance
72 pub struct UnboundedReceiver<T> { struct77 impl<T> fmt::Debug for UnboundedReceiver<T> { implementation108 impl<T> UnboundedReceiver<T> { implementation
144 pub struct UnboundedReceiver<T> { struct148 // `Pin<&mut UnboundedReceiver<T>>` is never projected to `Pin<&mut T>` argument149 impl<T> Unpin for UnboundedReceiver<T> {} implementation1147 impl<T> UnboundedReceiver<T> { implementation1219 impl<T> FusedStream for UnboundedReceiver<T> { implementation1225 impl<T> Stream for UnboundedReceiver<T> { implementation1257 impl<T> Drop for UnboundedReceiver<T> { implementation1287 impl<T> fmt::Debug for UnboundedReceiver<T> { implementation
32 impl<T> AssertRefUnwindSafe for mpsc::UnboundedReceiver<T> {} implementation44 impl<T> AssertUnwindSafe for mpsc::UnboundedReceiver<T> {} implementation
76 async fn async_main(rt: Arc<Runtime>, mut sigint: mpsc::UnboundedReceiver<()>) { in async_main()