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
use std::any::Any;
use std::panic;
use futures::{Future, Async};
use void::Void;
pub struct ResumeUnwind<F> {
future: F,
}
impl<F> ResumeUnwind<F> {
pub fn new(future: F) -> ResumeUnwind<F> {
ResumeUnwind {
future,
}
}
}
impl<F> Future for ResumeUnwind<F>
where
F: Future<Error=Box<Any + Send + 'static>>,
{
type Item = F::Item;
type Error = Void;
fn poll(&mut self) -> Result<Async<F::Item>, Void> {
match self.future.poll() {
Ok(Async::Ready(x)) => Ok(Async::Ready(x)),
Ok(Async::NotReady) => Ok(Async::NotReady),
Err(e) => panic::resume_unwind(e),
}
}
}