mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
Remove must_use from condition::Waiter (#430)
This commit is contained in:
parent
acb18e500c
commit
0d6f348fc2
3 changed files with 5 additions and 3 deletions
|
@ -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()
|
||||||
|
|
||||||
|
|
|
@ -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"]
|
||||||
|
|
|
@ -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>>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue