We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b997f3c commit 4fbca2eCopy full SHA for 4fbca2e
library/core/src/future/join.rs
@@ -4,7 +4,7 @@ use crate::cell::UnsafeCell;
4
use crate::future::{poll_fn, Future};
5
use crate::mem;
6
use crate::pin::Pin;
7
-use crate::task::{Context, Poll, ready};
+use crate::task::{ready, Context, Poll};
8
9
/// Polls multiple futures simultaneously, returning a tuple
10
/// of all results once complete.
library/core/src/task/poll.rs
@@ -94,7 +94,6 @@ impl<T> Poll<T> {
94
pub const fn is_pending(&self) -> bool {
95
!self.is_ready()
96
}
97
-
98
99
100
impl<T, E> Poll<Result<T, E>> {
0 commit comments