pub struct Sleep<'timer> { /* private fields */ }
Expand description
A Future
that completes after a specified Duration
.
This Future
is returned by the sleep
and try_sleep
functions,
and by the Timer::sleep
and Timer::try_sleep
methods.
Implementations§
Trait Implementations§
impl<'pin, 'timer> Unpin for Sleep<'timer>where
__Sleep<'pin, 'timer>: Unpin,
Auto Trait Implementations§
impl<'timer> !RefUnwindSafe for Sleep<'timer>
impl<'timer> Send for Sleep<'timer>
impl<'timer> !Sync for Sleep<'timer>
impl<'timer> !UnwindSafe for Sleep<'timer>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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