rustHow to sleep in Rust
Sleeping in Rust is done using the std::thread::sleep
function. This function takes a Duration
as an argument, which is a type representing a span of time.
use std::thread::sleep;
use std::time::Duration;
// Sleep for 2 seconds
sleep(Duration::from_secs(2));
The code above will sleep for 2 seconds.
Code explanation
use std::thread::sleep
: imports thesleep
function from thestd::thread
module.use std::time::Duration
: imports theDuration
type from thestd::time
module.Duration::from_secs(2)
: creates aDuration
representing 2 seconds.sleep(Duration::from_secs(2))
: calls thesleep
function with theDuration
representing 2 seconds.
Helpful links
Related
- How to get time from milliseconds in Rust
- What type to use for datetime in Rust
- How to get execution time in Rust
- Using now to get current time in Rust
- How to get current date in Rust
- How to add second to time in Rust
- How to add day to date in Rust
- How to convert timestamp to datetime in Rust
- How to convert datetime to timestamp in Rust
More of Rust
- How to split a string with Rust regex?
- How to match the end of a line in a Rust regex?
- How to escape parentheses in a Rust regex?
- How to use regex to match a group in Rust?
- How to use regex with bytes in Rust?
- How to use regex to match a double quote in Rust?
- How to add matrices in Rust?
- How to find the first match in a Rust regex?
- How to calculate the inverse of a matrix in Rust?
- Hashshet example in Rust
See more codes...