[][src]Struct futures_util::try_stream::IntoStream

#[must_use = "streams do nothing unless polled"]
pub struct IntoStream<St> { /* fields omitted */ }

Stream for the into_stream combinator.

Methods

impl<St> IntoStream<St>
[src]

Important traits for &'a mut W

Acquires a reference to the underlying stream that this combinator is pulling from.

Important traits for &'a mut W

Acquires a mutable reference to the underlying stream that this combinator is pulling from.

Consumes this combinator, returning the underlying stream.

Trait Implementations

impl<St: Debug> Debug for IntoStream<St>
[src]

Formats the value using the given formatter. Read more

impl<St: TryStream> Stream for IntoStream<St>
[src]

Values yielded by the stream.

Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more

Auto Trait Implementations

impl<St> Send for IntoStream<St> where
    St: Send

impl<St> Sync for IntoStream<St> where
    St: Sync