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 theDateTime
andTimestamp
types from thechrono
crate.let dt = DateTime::parse_from_rfc3339("2020-01-01T12:00:00+00:00").unwrap();
: parses aDateTime
from an RFC 3339 string.let ts = Timestamp::from_datetime(&dt);
: converts theDateTime
to atimestamp
.
Helpful links
Related
More of Rust
- How to use regex to match a double quote in Rust?
- How to replace a capture group using Rust regex?
- Bitwise XOR operator usage in Rust
- How to use modifiers in a Rust regex?
- How to map with index in Rust
- How to convert a u8 slice to a hex string in Rust?
- How to calculate the inverse of a matrix in Rust?
- How to use an enum in a Rust HashMap?
- How to match the end of a line in a Rust regex?
- How to create a Rust regex from a string?
See more codes...