実装方法
Cargo.toml
[dependencies]
chrono = "0.4"
lib.rs
use chrono::{Utc, TimeZone};
assert_eq!(Utc.timestamp(1431648000, 0).to_string(), "2015-05-15 00:00:00 UTC");
プログラミング系ハマったとこ解決ブログ
Cargo.toml
[dependencies]
chrono = "0.4"
lib.rs
use chrono::{Utc, TimeZone};
assert_eq!(Utc.timestamp(1431648000, 0).to_string(), "2015-05-15 00:00:00 UTC");