Function aarch64_std::thread::sleep
source · pub fn sleep(d: Duration)Expand description
Puts the current thread to sleep for at least the specified amount of time.
The thread may sleep longer than the duration specified due to scheduling specifics or platform-dependent functionality. It will never sleep less.
This function is blocking, and should not be used in async functions.