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]
fn clone(&self) -> OptionFuture<F>ⓘNotable traits for OptionFuture<F>
impl<F: Future> Future for OptionFuture<F> type Output = Option<F::Output>;
[src]
Notable traits for OptionFuture<F>
impl<F: Future> Future for OptionFuture<F> type Output = Option<F::Output>;
pub fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn is_terminated(&self) -> bool
[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<'__pin, F> Unpin for OptionFuture<F> where
__Origin<'__pin, F>: Unpin,
[src]
__Origin<'__pin, F>: Unpin,
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,
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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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,
type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?
pub fn into_future(self) -> <F as IntoFuture>::Future
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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 = Infallible
The type returned in the event of a conversion error.
pub 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>,