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

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

Stream for the catch_unwind combinator.

This is created by the Stream::catch_unwind method.

Trait Implementations

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

Formats the value using the given formatter. Read more

impl<St> Stream for CatchUnwind<St> where
    St: UnwindSafe + Stream
[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 CatchUnwind<St> where
    St: Send

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