Struct futures_util::future::NeverError [−][src]
#[must_use = "futures/streams/sinks do nothing unless you `.await` or poll them"]pub struct NeverError<Fut> { /* fields omitted */ }
Future for the never_error
combinator.
Trait Implementations
impl<Fut> FusedFuture for NeverError<Fut> where
Map<Fut, OkFn<Never>>: FusedFuture,
[src]
impl<Fut> FusedFuture for NeverError<Fut> where
Map<Fut, OkFn<Never>>: FusedFuture,
[src]fn is_terminated(&self) -> bool
[src]
impl<'__pin, Fut> Unpin for NeverError<Fut> where
__Origin<'__pin, Fut>: Unpin,
[src]
__Origin<'__pin, Fut>: Unpin,
Auto Trait Implementations
impl<Fut> RefUnwindSafe for NeverError<Fut> where
Fut: RefUnwindSafe,
Fut: RefUnwindSafe,
impl<Fut> Send for NeverError<Fut> where
Fut: Send,
Fut: Send,
impl<Fut> Sync for NeverError<Fut> where
Fut: Sync,
Fut: Sync,
impl<Fut> UnwindSafe for NeverError<Fut> where
Fut: UnwindSafe,
Fut: UnwindSafe,
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?