rustHow to get time from milliseconds in Rust
To get time from milliseconds in Rust, you can use the Duration
struct from the std::time
module. This struct takes a u64
value representing the number of milliseconds and returns a Duration
object.
Example code
use std::time::Duration;
let milliseconds = 1000;
let duration = Duration::from_millis(milliseconds);
Output example
Duration {
secs: 1,
nanos: 0
}
Code explanation
use std::time::Duration
: imports theDuration
struct from thestd::time
module.let milliseconds = 1000
: creates a variablemilliseconds
with the value of 1000.let duration = Duration::from_millis(milliseconds)
: creates aDuration
object from themilliseconds
variable.
Helpful links
Related
- How to sleep 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 format date in Rust
- How to convert timestamp to datetime in Rust
- How to add second to time in Rust
- How to add day to date in Rust
- How to convert datetime to timestamp in Rust
More of Rust
- How to match the end of a line in a Rust regex?
- How to parse JSON string in Rust?
- How to modify an existing entry in a Rust HashMap?
- How to sort the keys in a Rust HashMap?
- How to declare a Rust slice?
- How to create a subslice from a Rust slice?
- How to calculate the sum of a Rust slice?
- How to get the first element of a slice in Rust?
- How to get the last element of a Rust slice?
- How to convert the keys of a Rust HashMap to a vector?
See more codes...