Struct futures_task::FutureObj
source · pub struct FutureObj<'a, T>(_);
Expand description
A custom trait object for polling futures, roughly akin to
Box<dyn Future<Output = T> + Send + 'a>
.
This custom trait object was introduced as currently it is not possible to
take dyn Trait
by value and Box<dyn Trait>
is not available in no_std
contexts.
You should generally not need to use this type outside of no_std
or when
implementing Spawn
, consider using BoxFuture
instead.
Implementations§
Trait Implementations§
source§impl<'a, T> From<FutureObj<'a, T>> for LocalFutureObj<'a, T>
impl<'a, T> From<FutureObj<'a, T>> for LocalFutureObj<'a, T>
impl<T> Send for FutureObj<'_, T>
impl<T> Unpin for FutureObj<'_, T>
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for FutureObj<'a, T>
impl<'a, T> !Sync for FutureObj<'a, T>
impl<'a, T> !UnwindSafe for FutureObj<'a, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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