Browse Source

doc: mention futures-util in use_coroutine hook

Miles Murgaw 2 năm trước cách đây
mục cha
commit
d059b2bc05
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      packages/hooks/src/usecoroutine.rs

+ 4 - 0
packages/hooks/src/usecoroutine.rs

@@ -33,6 +33,10 @@ use std::future::Future;
 /// However, you must plan out your own concurrency and synchronization. If you
 /// don't care about actions in your app being synchronized, you can use [`use_callback`]
 /// hook to spawn multiple tasks and run them concurrently.
+/// 
+/// ### Notice
+/// In order to use ``rx.next().await``, you will need to extend the ``Stream`` trait (used by ``UnboundedReceiver``) 
+/// by adding the ``futures-util`` crate as a dependency and adding ``StreamExt`` into scope via ``use futures_util::stream::StreamExt;``
 ///
 /// ## Example
 ///