std::thread
pub fn yield_now()
Cooperatively gives up a timeslice to the OS scheduler.
use std::thread; thread::yield_now();Run