We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048995a commit c9b796cCopy full SHA for c9b796c
futures-core/src/task/poll.rs
@@ -1,6 +1,9 @@
1
-/// Extracts the successful type of a `Poll<T>`.
+/// Extracts the successful type of `Poll<T>`.
2
///
3
/// This macro bakes in propagation of `Pending` signals by returning early.
4
+///
5
+/// **Note:** Since Rust 1.64, this macro is soft-deprecated in favor of
6
+/// [`ready!`](core::task::ready) macro in the standard library.
7
#[macro_export]
8
macro_rules! ready {
9
($e:expr $(,)?) => {
0 commit comments