pub struct AsyncDropInPlace<T>(/* private fields */)
where
T: ?Sized;
๐ฌThis is a nightly-only experimental API. (
async_drop
)Expand description
A future returned by the async_drop_in_place
.
Trait Implementationsยง
sourceยงimpl<T> Debug for AsyncDropInPlace<T>where
T: ?Sized,
impl<T> Debug for AsyncDropInPlace<T>where
T: ?Sized,
sourceยงimpl<T> Future for AsyncDropInPlace<T>where
T: ?Sized,
impl<T> Future for AsyncDropInPlace<T>where
T: ?Sized,
Auto Trait Implementationsยง
impl<T> Freeze for AsyncDropInPlace<T>
impl<T> RefUnwindSafe for AsyncDropInPlace<T>where
<T as AsyncDestruct>::AsyncDestructor: RefUnwindSafe,
T: ?Sized,
impl<T> Send for AsyncDropInPlace<T>
impl<T> Sync for AsyncDropInPlace<T>
impl<T> Unpin for AsyncDropInPlace<T>
impl<T> UnwindSafe for AsyncDropInPlace<T>where
<T as AsyncDestruct>::AsyncDestructor: UnwindSafe,
T: ?Sized,
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,
sourceยง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