[][src]Struct smol::stream::FindMapFuture

#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct FindMapFuture<'a, S, F> where
    S: ?Sized
{ /* fields omitted */ }

Future for the StreamExt::find_map() method.

Trait Implementations

impl<'a, S, F> Debug for FindMapFuture<'a, S, F> where
    F: Debug,
    S: Debug + ?Sized
[src]

impl<'a, S, B, F> Future for FindMapFuture<'a, S, F> where
    F: FnMut(<S as Stream>::Item) -> Option<B>,
    S: Stream + Unpin + ?Sized
[src]

type Output = Option<B>

The type of value produced on completion.

impl<'_, S, F> Unpin for FindMapFuture<'_, S, F> where
    S: Unpin + ?Sized
[src]

Auto Trait Implementations

impl<'a, S: ?Sized, F> RefUnwindSafe for FindMapFuture<'a, S, F> where
    F: RefUnwindSafe,
    S: RefUnwindSafe

impl<'a, S: ?Sized, F> Send for FindMapFuture<'a, S, F> where
    F: Send,
    S: Send

impl<'a, S: ?Sized, F> Sync for FindMapFuture<'a, S, F> where
    F: Sync,
    S: Sync

impl<'a, S, F> !UnwindSafe for FindMapFuture<'a, S, F>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<F> FutureExt for F where
    F: Future + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.