summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-19 23:17:09 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-19 23:17:09 +0200
commit114f7dfa14530a0197125dfef36d2a385bff5c60 (patch)
treecabccc9ba9065d60d58d982d0c61709520bc9ab2 /futures/src/subscription.rs
parentbf3b6f100df7b1585dfac88da432bc29784ed534 (diff)
downloadiced-114f7dfa14530a0197125dfef36d2a385bff5c60.tar.gz
iced-114f7dfa14530a0197125dfef36d2a385bff5c60.tar.bz2
iced-114f7dfa14530a0197125dfef36d2a385bff5c60.zip
Add `must_use` attribute to `Task`
Diffstat (limited to '')
-rw-r--r--futures/src/subscription.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs
index 8067c259..eaea1a1f 100644
--- a/futures/src/subscription.rs
+++ b/futures/src/subscription.rs
@@ -113,7 +113,7 @@ pub type Hasher = rustc_hash::FxHasher;
/// ```
///
/// [`Future`]: std::future::Future
-#[must_use = "`Subscription` must be returned to runtime to take effect"]
+#[must_use = "`Subscription` must be returned to the runtime to take effect; normally in your `subscription` function."]
pub struct Subscription<T> {
recipes: Vec<Box<dyn Recipe<Output = T>>>,
}