mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Deprecated std::task::ready re-export (#451)
This commit is contained in:
parent
8288fc0364
commit
a30147120d
6 changed files with 13 additions and 11 deletions
|
@ -2,6 +2,7 @@
|
|||
#![deny(rust_2018_idioms, unreachable_pub, missing_debug_implementations)]
|
||||
|
||||
#[doc(hidden)]
|
||||
#[deprecated]
|
||||
pub use std::task::ready;
|
||||
|
||||
pub mod channel;
|
||||
|
|
|
@ -102,10 +102,6 @@ impl CounterInner {
|
|||
|
||||
fn available(&self, cx: &mut task::Context<'_>) -> bool {
|
||||
self.task.register(cx.waker());
|
||||
if self.count.get() < self.capacity {
|
||||
true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
self.count.get() < self.capacity
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue