Struct futures_util::future::IntoFuture
source · pub struct IntoFuture<Fut> { /* private fields */ }
Expand description
Future for the into_future
method.
Trait Implementations§
source§impl<Fut: Debug> Debug for IntoFuture<Fut>
impl<Fut: Debug> Debug for IntoFuture<Fut>
source§impl<Fut: TryFuture + FusedFuture> FusedFuture for IntoFuture<Fut>
impl<Fut: TryFuture + FusedFuture> FusedFuture for IntoFuture<Fut>
source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the underlying future should no longer be polled.source§impl<Fut: TryFuture> Future for IntoFuture<Fut>
impl<Fut: TryFuture> Future for IntoFuture<Fut>
impl<'__pin, Fut> Unpin for IntoFuture<Fut>where
__Origin<'__pin, Fut>: Unpin,
Auto Trait Implementations§
impl<Fut> RefUnwindSafe for IntoFuture<Fut>where
Fut: RefUnwindSafe,
impl<Fut> Send for IntoFuture<Fut>where
Fut: Send,
impl<Fut> Sync for IntoFuture<Fut>where
Fut: Sync,
impl<Fut> UnwindSafe for IntoFuture<Fut>where
Fut: UnwindSafe,
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more