rustHow to convert datetime to timestamp in Rust
Converting a datetime to a timestamp in Rust is a simple process. The chrono crate provides a Timestamp type which can be used to convert a DateTime to a timestamp.
Example code
use chrono::{DateTime, Timestamp};
let dt = DateTime::parse_from_rfc3339("2020-01-01T12:00:00+00:00").unwrap();
let ts = Timestamp::from_datetime(&dt);
Output example
1577836800
The code above:
use chrono::{DateTime, Timestamp};: imports theDateTimeandTimestamptypes from thechronocrate.let dt = DateTime::parse_from_rfc3339("2020-01-01T12:00:00+00:00").unwrap();: parses aDateTimefrom an RFC 3339 string.let ts = Timestamp::from_datetime(&dt);: converts theDateTimeto atimestamp.
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
- Using now to get current time in Rust
- How to get current date in Rust
- How to convert timestamp to datetime in Rust
- How to format datetime in Rust
- How to format time in Rust
More of Rust
- How to match whitespace with a regex in Rust?
- How to perform matrix operations in Rust?
- How to use regex lookahead in Rust?
- How to use regex to match a double quote in Rust?
- How to implement PartialEq for a Rust HashMap?
- How to sort a Rust HashMap?
- How to insert an element into a Rust HashMap if it does not already exist?
- How to use a tuple as a key in a Rust HashMap?
- How to compare two Rust HashMaps?
- How to convert a Rust slice of u8 to u32?
See more codes...