use std::future::Future; use std::pin::Pin; use std::task::{Context, Poll}; /// Future for the [`ok`](ok()) function. /// /// `pub` in order to use the future as an associated type in a sealed trait. #[derive(Debug)] // Used as an associated type in a "sealed" trait. #[allow(unreachable_pub)] pub struct Ready(Option); impl Unpin for Ready {} impl Future for Ready { type Output = T; #[inline] fn poll(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll { Poll::Ready(self.0.take().unwrap()) } } /// Creates a future that is immediately ready with a success value. pub(crate) fn ok(t: T) -> Ready> { Ready(Some(Ok(t))) }