use {Future, IntoFuture, Poll}; use super::chain::Chain; /// Future for the `and_then` combinator, chaining a computation onto the end of /// another future which completes successfully. /// /// This is created by the `Future::and_then` method. #[derive(Debug)] #[must_use = "futures do nothing unless polled"] pub struct AndThen where A: Future, B: IntoFuture { state: Chain, } pub fn new(future: A, f: F) -> AndThen where A: Future, B: IntoFuture, { AndThen { state: Chain::new(future, f), } } impl Future for AndThen where A: Future, B: IntoFuture, F: FnOnce(A::Item) -> B, { type Item = B::Item; type Error = B::Error; fn poll(&mut self) -> Poll { self.state.poll(|result, f| { result.map(|e| { Err(f(e).into_future()) }) }) } }