Files
arrayvec
async_datagram
async_ready
byteorder
bytes
cfg_if
crossbeam
crossbeam_channel
crossbeam_deque
crossbeam_epoch
crossbeam_utils
either
futures
futures_channel
futures_core
futures_executor
futures_io
futures_select_macro
futures_sink
futures_util
iovec
juliex
lazy_static
lazycell
libc
lock_api
log
memoffset
mio
mio_uds
net2
nodrop
num_cpus
owning_ref
parking_lot
parking_lot_core
pin_utils
proc_macro2
proc_macro_hack
proc_macro_nested
quote
rand
rand_chacha
rand_core
rand_hc
rand_isaac
rand_jitter
rand_os
rand_pcg
rand_xorshift
romio
runtime
runtime_attributes
runtime_native
runtime_raw
scopeguard
slab
smallvec
stable_deref_trait
syn
tokio_io
unicode_xid
 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 core::pin::Pin;
use futures_core::future::Future;
use futures_core::stream::Stream;
use futures_core::task::{Context, Poll};
use pin_utils::unsafe_pinned;

/// Stream for the [`into_stream`](super::FutureExt::into_stream) method.
#[must_use = "futures do nothing unless polled"]
#[derive(Debug)]
pub struct IntoStream<Fut: Future> {
    future: Option<Fut>
}

impl<Fut: Future> IntoStream<Fut> {
    unsafe_pinned!(future: Option<Fut>);

    pub(super) fn new(future: Fut) -> IntoStream<Fut> {
        IntoStream {
            future: Some(future)
        }
    }
}

impl<Fut: Future> Stream for IntoStream<Fut> {
    type Item = Fut::Output;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let v = match self.as_mut().future().as_pin_mut() {
            Some(fut) => {
                match fut.poll(cx) {
                    Poll::Pending => return Poll::Pending,
                    Poll::Ready(v) => v
                }
            }
            None => return Poll::Ready(None),
        };

        self.as_mut().future().set(None);
        Poll::Ready(Some(v))
    }
}