[][src]Struct futures::future::OptionFuture

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct OptionFuture<F> { /* fields omitted */ }

A future representing a value which may or may not be present.

Created by the From implementation for Option.

Examples

use futures::future::OptionFuture;

let mut a: OptionFuture<_> = Some(async { 123 }).into();
assert_eq!(a.await, Some(123));

a = None.into();
assert_eq!(a.await, None);

Trait Implementations

impl<F> Clone for OptionFuture<F> where
    F: Clone
[src]

impl<F> Debug for OptionFuture<F> where
    F: Debug
[src]

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

impl<F> FusedFuture for OptionFuture<F> where
    F: FusedFuture
[src]

impl<F> Future for OptionFuture<F> where
    F: Future
[src]

type Output = Option<<F as Future>::Output>

The type of value produced on completion.

Auto Trait Implementations

impl<F> RefUnwindSafe for OptionFuture<F> where
    F: RefUnwindSafe

impl<F> Send for OptionFuture<F> where
    F: Send

impl<F> Sync for OptionFuture<F> where
    F: Sync

impl<F> Unpin for OptionFuture<F> where
    F: Unpin

impl<F> UnwindSafe for OptionFuture<F> where
    F: UnwindSafe

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<T> FutureExt for T where
    T: Future + ?Sized
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.