Struct futures::future::Inspect[][src]

#[must_use = "futures do nothing unless polled"]
pub struct Inspect<Fut, F> where
    Fut: Future
{ /* fields omitted */ }

Do something with the item of a future, passing it on.

This is created by the super::FutureExt::inspect method.

Trait Implementations

impl<Fut, F> Unpin for Inspect<Fut, F> where
    Fut: Unpin + Future
[src]

impl<Fut, F> Debug for Inspect<Fut, F> where
    F: Debug,
    Fut: Debug + Future
[src]

Formats the value using the given formatter. Read more

impl<Fut, F> Future for Inspect<Fut, F> where
    F: FnOnce(&<Fut as Future>::Output),
    Fut: Future
[src]

🔬 This is a nightly-only experimental API. (futures_api)

futures in libcore are unstable

The result of the Future.

🔬 This is a nightly-only experimental API. (futures_api)

futures in libcore are unstable

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

impl<Fut, F> Send for Inspect<Fut, F> where
    F: Send,
    Fut: Send

impl<Fut, F> Sync for Inspect<Fut, F> where
    F: Sync,
    Fut: Sync