diff options
Diffstat (limited to 'futures/src/command.rs')
-rw-r--r-- | futures/src/command.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/futures/src/command.rs b/futures/src/command.rs index 05c3a1d0..3d1ec3f9 100644 --- a/futures/src/command.rs +++ b/futures/src/command.rs @@ -1,4 +1,5 @@ /// A set of asynchronous actions to be performed by some runtime. +#[must_use = "`Command` must be returned to runtime to take effect"] #[derive(Debug)] pub struct Command<T>(Internal<T>); |