Struct futures_util::stream::Peek [−][src]
#[must_use = "futures do nothing unless polled"]pub struct Peek<'a, St: Stream> { /* fields omitted */ }
Future for the Peekable::peek()
function from Peekable
Trait Implementations
impl<St: Stream> FusedFuture for Peek<'_, St>
[src]
impl<St: Stream> FusedFuture for Peek<'_, St>
[src]fn is_terminated(&self) -> bool
[src]
impl<'__pin, 'a, St: Stream> Unpin for Peek<'a, St> where
__Origin<'__pin, 'a, St>: Unpin,
[src]
__Origin<'__pin, 'a, St>: Unpin,
Auto Trait Implementations
impl<'a, St> RefUnwindSafe for Peek<'a, St> where
St: RefUnwindSafe,
<St as Stream>::Item: RefUnwindSafe,
St: RefUnwindSafe,
<St as Stream>::Item: RefUnwindSafe,
impl<'a, St> Send for Peek<'a, St> where
St: Send,
<St as Stream>::Item: Send,
St: Send,
<St as Stream>::Item: Send,
impl<'a, St> Sync for Peek<'a, St> where
St: Sync,
<St as Stream>::Item: Sync,
St: Sync,
<St as Stream>::Item: Sync,
impl<'a, St> !UnwindSafe for Peek<'a, St>
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?