rustHow to convert timestamp to datetime in Rust
Converting a timestamp to a datetime in Rust can be done using the chrono crate.
Example code
use chrono::{DateTime, Utc};
let timestamp = 1589717600;
let datetime: DateTime<Utc> = Utc.timestamp(timestamp, 0);
println!("{}", datetime);
Output example
2020-05-17T00:00:00Z
The code above uses the chrono crate to convert a timestamp to a datetime. The Utc type is used to represent a datetime in the UTC timezone. The timestamp method is then used to convert the timestamp to a DateTime type. Finally, the println! macro is used to print the datetime.
Parts of the code:
use chrono::{DateTime, Utc};: imports theDateTimeandUtctypes from thechronocrate.let timestamp = 1589717600;: creates a variable to store the timestamp.let datetime: DateTime<Utc> = Utc.timestamp(timestamp, 0);: converts the timestamp to aDateTimetype in the UTC timezone.println!("{}", datetime);: prints the datetime.
Helpful links
Related
- How to get time from milliseconds in Rust
- What type to use for datetime in Rust
- How to sleep in Rust
- How to add second to time in Rust
- How to get execution time in Rust
- How to format time in Rust
- How to format datetime in Rust
- Using now to get current time in Rust
- How to get current date in Rust
- How to format date in Rust
More of Rust
- How to perform matrix operations in Rust?
- How to match whitespace with a regex in Rust?
- How to convert a u8 slice to a hex string in Rust?
- How to match a URL with a regex in Rust?
- How to iterate through hashmap keys in Rust
- How to use Unicode in a regex in Rust?
- Regex example to match multiline string in Rust?
- How to make regex case insensitive in Rust?
- How to ignore case in Rust regex?
- How to use regex to match a double quote in Rust?
See more codes...