Function std::thread::sleep_ms1.0.0 [] [src]

pub fn sleep_ms(ms: u32)
Deprecated since 1.6.0

: replaced by std::thread::sleep

Puts the current thread to sleep for the specified amount of time.

The thread may sleep longer than the duration specified due to scheduling specifics or platform-dependent functionality.

Platform-specific behavior

On Unix platforms this function will not return early due to a signal being received or a spurious wakeup.

Examples

use std::thread;

// Let's sleep for 2 seconds:
thread::sleep_ms(2000);Run