pub struct LocalTimerFuture<'a> { /* private fields */ }
Expand description
A Future that is resolved once the requested time has elapsed.
Trait Implementations§
Source§impl<'a> Debug for LocalTimerFuture<'a>
impl<'a> Debug for LocalTimerFuture<'a>
Source§impl<'a> Drop for LocalTimerFuture<'a>
impl<'a> Drop for LocalTimerFuture<'a>
Source§impl<'a> FusedFuture for LocalTimerFuture<'a>
impl<'a> FusedFuture for LocalTimerFuture<'a>
Source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the underlying future should no longer be polled.Source§impl<'a> Future for LocalTimerFuture<'a>
impl<'a> Future for LocalTimerFuture<'a>
Auto Trait Implementations§
impl<'a> Freeze for LocalTimerFuture<'a>
impl<'a> !RefUnwindSafe for LocalTimerFuture<'a>
impl<'a> !Send for LocalTimerFuture<'a>
impl<'a> !Sync for LocalTimerFuture<'a>
impl<'a> !Unpin for LocalTimerFuture<'a>
impl<'a> !UnwindSafe for LocalTimerFuture<'a>
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