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> !Freeze for Sleep<'timer>
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
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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,
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