sleep_until — 특정 시각까지 스레드 잠자기

sleep_until — 특정 시각까지 스레드 잠자기

sleep_until는 현재 스레드를 특정 시각(Instant)까지 잠들게 하는 함수예요.

출처: Rust 공식 문서

본문

pub fn sleep_until(deadline: Instant)

지정된 deadline 시각까지 현재 스레드를 차단해요.

std::thread::sleep_until(std::time::Instant::now() + std::time::Duration::from_secs(1));

더 알아보기 (Learn more)