Struct futures::stream::CatchUnwind [] [src]

#[must_use = "streams do nothing unless polled"]
pub struct CatchUnwind<S> where
    S: Stream
{ /* fields omitted */ }

Stream for the catch_unwind combinator.

This is created by the Stream::catch_unwind method.

Trait Implementations

impl<S> Debug for CatchUnwind<S> where
    S: Debug + Stream
[src]

[src]

Formats the value using the given formatter. Read more

impl<S> Stream for CatchUnwind<S> where
    S: Stream + UnwindSafe
[src]

Values yielded by the stream.

Errors yielded by the stream.

[src]

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<S> Send for CatchUnwind<S> where
    S: Send

impl<S> Sync for CatchUnwind<S> where
    S: Sync