Expand description
Utilities for tracking time.
This module provides a types for executing code after a set period of time.
-
Sleep
is a future that does no work and completes at a specificInstant
in time. -
sleep
andsleep_until
provide ways to yield control away from a future for or until a specific instant in time.
Structs§
- Sleep
- A future that will complete after a certain instant is reached in time.
Functions§
- sleep
- Returns a future that will complete after the given duration.
- sleep_
until - Returns a future that waits until a deadline is reached.