Struct futures_lite::stream::TryForEachFuture [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct TryForEachFuture<'a, S: ?Sized, F> { /* fields omitted */ }
Future for the StreamExt::try_for_each()
method.
Trait Implementations
impl<'a, S: ?Sized, F, E> Future for TryForEachFuture<'a, S, F> where
S: Stream + Unpin,
F: FnMut(S::Item) -> Result<(), E>,
[src]
impl<'a, S: ?Sized, F, E> Future for TryForEachFuture<'a, S, F> where
S: Stream + Unpin,
F: FnMut(S::Item) -> Result<(), E>,
[src]impl<'a, S: Unpin + ?Sized, F> Unpin for TryForEachFuture<'a, S, F>
[src]
Auto Trait Implementations
impl<'a, S: ?Sized, F> RefUnwindSafe for TryForEachFuture<'a, S, F> where
F: RefUnwindSafe,
S: RefUnwindSafe,
F: RefUnwindSafe,
S: RefUnwindSafe,
impl<'a, S: ?Sized, F> Send for TryForEachFuture<'a, S, F> where
F: Send,
S: Send,
F: Send,
S: Send,
impl<'a, S: ?Sized, F> Sync for TryForEachFuture<'a, S, F> where
F: Sync,
S: Sync,
F: Sync,
S: Sync,
impl<'a, S, F> !UnwindSafe for TryForEachFuture<'a, S, F>
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?