Remove must_use from condition::Waiter (#430)

This commit is contained in:
Nikolay Kim 2024-09-26 16:47:39 +05:00 committed by GitHub
parent acb18e500c
commit 0d6f348fc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,8 @@
# Changes # Changes
## [2.4.0] - 2024-xx-xx ## [2.4.0] - 2024-09-26
* Remove "must_use" from `condition::Waiter`
* Remove mpsc::Sender::downgrade() * Remove mpsc::Sender::downgrade()

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-util" name = "ntex-util"
version = "2.3.0" version = "2.4.0"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for ntex framework" description = "Utilities for ntex framework"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]

View file

@ -130,7 +130,7 @@ impl<T: Default> Drop for Condition<T> {
} }
} }
#[must_use = "Waiter do nothing unless polled"] /// Waits for result from condition
pub struct Waiter<T = ()> { pub struct Waiter<T = ()> {
token: usize, token: usize,
inner: Cell<Inner<T>>, inner: Cell<Inner<T>>,