Struct futures_lite::stream::PartitionFuture [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct PartitionFuture<S, P, B> { /* fields omitted */ }
Future for the StreamExt::partition()
method.
Trait Implementations
impl<S, P, B> Future for PartitionFuture<S, P, B> where
S: Stream + Sized,
P: FnMut(&S::Item) -> bool,
B: Default + Extend<S::Item>,
[src]
impl<S, P, B> Future for PartitionFuture<S, P, B> where
S: Stream + Sized,
P: FnMut(&S::Item) -> bool,
B: Default + Extend<S::Item>,
[src]impl<'__pin, S, P, B> Unpin for PartitionFuture<S, P, B> where
__Origin<'__pin, S, P, B>: Unpin,
[src]
__Origin<'__pin, S, P, B>: Unpin,
Auto Trait Implementations
impl<S, P, B> RefUnwindSafe for PartitionFuture<S, P, B> where
B: RefUnwindSafe,
P: RefUnwindSafe,
S: RefUnwindSafe,
B: RefUnwindSafe,
P: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, P, B> Send for PartitionFuture<S, P, B> where
B: Send,
P: Send,
S: Send,
B: Send,
P: Send,
S: Send,
impl<S, P, B> Sync for PartitionFuture<S, P, B> where
B: Sync,
P: Sync,
S: Sync,
B: Sync,
P: Sync,
S: Sync,
impl<S, P, B> UnwindSafe for PartitionFuture<S, P, B> where
B: UnwindSafe,
P: UnwindSafe,
S: UnwindSafe,
B: UnwindSafe,
P: 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?