Struct futures_util::future::OptionFuture [−][src]
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> Clone for OptionFuture<F>
[src][+]
impl<F: Debug> Debug for OptionFuture<F>
[src][+]
impl<T> From<Option<T>> for OptionFuture<T>
[src][+]
impl<F: FusedFuture> FusedFuture for OptionFuture<F>
[src][+]
impl<F: Future> Future for OptionFuture<F>
[src][+]
impl<'__pin, F> Unpin for OptionFuture<F> where
__Origin<'__pin, F>: Unpin,
[src]
__Origin<'__pin, F>: Unpin,
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, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<F> IntoFuture for F where
F: Future,
[src][+]
F: Future,
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>,