1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use std::{future::Future, pin::Pin, task::Context, task::Poll};
#[derive(Debug, Clone)]
#[must_use = "futures do nothing unless polled"]
pub enum Ready<T, E> {
Ok(T),
Err(E),
Done(Sealed),
}
#[derive(Debug, Clone)]
pub struct Sealed;
impl<T, E> Unpin for Ready<T, E> {}
impl<T, E> Future for Ready<T, E> {
type Output = Result<T, E>;
#[inline]
fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Self::Output> {
let result = std::mem::replace(self.get_mut(), Ready::Done(Sealed));
match result {
Ready::Ok(ok) => Poll::Ready(Ok(ok)),
Ready::Err(err) => Poll::Ready(Err(err)),
Ready::Done(_) => panic!("cannot poll completed Ready future"),
}
}
}
impl<T, E> From<Result<T, E>> for Ready<T, E> {
fn from(r: Result<T, E>) -> Self {
match r {
Ok(v) => Ready::Ok(v),
Err(e) => Ready::Err(e),
}
}
}