[−][src]Struct futures::future::OptionFuture
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][+]
F: Clone,
impl<F> Debug for OptionFuture<F> where
F: Debug,
[src][+]
F: Debug,
impl<T> From<Option<T>> for OptionFuture<T>
[src][+]
impl<F> FusedFuture for OptionFuture<F> where
F: FusedFuture,
[src][+]
F: FusedFuture,
impl<F> Future for OptionFuture<F> where
F: Future,
[src][+]
F: Future,
impl<'pin, F> Unpin for OptionFuture<F> where
__OptionFuture<'pin, F>: Unpin,
[src]
__OptionFuture<'pin, F>: Unpin,
impl<F> UnsafeUnpin for OptionFuture<F>
[src]
Auto Trait Implementations
impl<F> RefUnwindSafe for OptionFuture<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for OptionFuture<F> where
F: Send,
F: Send,
impl<F> Sync for OptionFuture<F> where
F: Sync,
F: Sync,
impl<F> UnwindSafe for OptionFuture<F> where
F: UnwindSafe,
F: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T> FutureExt for T where
T: Future + ?Sized,
[src][+]
T: Future + ?Sized,
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,