std::thread::sleep

Function std::thread::sleep

pub fn sleep(dur: Duration)

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 behavior

On Unix platforms this function will not return early due to a signal being received or a spurious wakeup. Platforms which do not support nanosecond precision for sleeping will have dur rounded up to the nearest granularity of time they can sleep for.

Examples

use std::{thread, time};

let ten_millis = time::Duration::from_millis(10);
let now = time::Instant::now();

thread::sleep(ten_millis);

assert!(now.elapsed() >= ten_millis);

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/thread/fn.sleep.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部