Struct futures_lite::stream::UnzipFuture [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct UnzipFuture<S, FromA, FromB> { /* fields omitted */ }
Future for the StreamExt::unzip()
method.
Trait Implementations
impl<S, A, B, FromA, FromB> Future for UnzipFuture<S, FromA, FromB> where
S: Stream<Item = (A, B)>,
FromA: Default + Extend<A>,
FromB: Default + Extend<B>,
[src]
impl<S, A, B, FromA, FromB> Future for UnzipFuture<S, FromA, FromB> where
S: Stream<Item = (A, B)>,
FromA: Default + Extend<A>,
FromB: Default + Extend<B>,
[src]impl<'__pin, S, FromA, FromB> Unpin for UnzipFuture<S, FromA, FromB> where
__Origin<'__pin, S, FromA, FromB>: Unpin,
[src]
__Origin<'__pin, S, FromA, FromB>: Unpin,
Auto Trait Implementations
impl<S, FromA, FromB> RefUnwindSafe for UnzipFuture<S, FromA, FromB> where
FromA: RefUnwindSafe,
FromB: RefUnwindSafe,
S: RefUnwindSafe,
FromA: RefUnwindSafe,
FromB: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, FromA, FromB> Send for UnzipFuture<S, FromA, FromB> where
FromA: Send,
FromB: Send,
S: Send,
FromA: Send,
FromB: Send,
S: Send,
impl<S, FromA, FromB> Sync for UnzipFuture<S, FromA, FromB> where
FromA: Sync,
FromB: Sync,
S: Sync,
FromA: Sync,
FromB: Sync,
S: Sync,
impl<S, FromA, FromB> UnwindSafe for UnzipFuture<S, FromA, FromB> where
FromA: UnwindSafe,
FromB: UnwindSafe,
S: UnwindSafe,
FromA: UnwindSafe,
FromB: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<F> FutureExt for F where
F: Future + ?Sized,
[src]
impl<F> FutureExt for F where
F: Future + ?Sized,
[src]fn poll(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output> where
Self: Unpin,
[src]
Self: Unpin,
fn or<F>(self, other: F) -> Or<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>,
[src]
Self: Sized,
F: Future<Output = Self::Output>,
fn race<F>(self, other: F) -> Race<Self, F>ⓘ where
Self: Sized,
F: Future<Output = Self::Output>,
[src]
Self: Sized,
F: Future<Output = Self::Output>,
fn catch_unwind(self) -> CatchUnwind<Self>ⓘNotable traits for CatchUnwind<F>
impl<F: Future + UnwindSafe> Future for CatchUnwind<F> type Output = Result<F::Output, Box<dyn Any + Send>>;
where
Self: Sized + UnwindSafe,
[src]
Notable traits for CatchUnwind<F>
impl<F: Future + UnwindSafe> Future for CatchUnwind<F> type Output = Result<F::Output, Box<dyn Any + Send>>;
Self: Sized + UnwindSafe,
fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>> where
Self: Sized + Send + 'a,
[src]
Self: Sized + Send + 'a,
fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>> where
Self: Sized + 'a,
[src]
Self: Sized + 'a,
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?