[−][src]Struct futures_util::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<T> From<Option<T>> for OptionFuture<T>
[src]
impl<F: Clone> Clone for OptionFuture<F>
[src]
ⓘImportant traits for OptionFuture<F>fn clone(&self) -> OptionFuture<F>
[src]
ⓘImportant traits for OptionFuture<F>
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<F: Debug> Debug for OptionFuture<F>
[src]
impl<F: Future> Future for OptionFuture<F>
[src]
type Output = Option<F::Output>
The type of value produced on completion.
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output>
[src]
impl<F: FusedFuture> FusedFuture for OptionFuture<F>
[src]
fn is_terminated(&self) -> bool
[src]
Auto Trait Implementations
impl<F> Send for OptionFuture<F> where
F: Send,
F: Send,
impl<F> Sync for OptionFuture<F> where
F: Sync,
F: Sync,
impl<F> Unpin for OptionFuture<F> where
F: Unpin,
F: Unpin,
impl<F> UnwindSafe for OptionFuture<F> where
F: UnwindSafe,
F: UnwindSafe,
impl<F> RefUnwindSafe for OptionFuture<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ffn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut F
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,