Rust timestampを使ってunix timeを取得するサンプル

環境
Windows11 pro 64bit
rustc 1.66.0

概要
「unix time」を取得するは、「chrono」の「timestamp」を使用します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
use chrono::{DateTime, Local};
fn main() {
let dt: DateTime<Local> = Local::now();
let ts: i64 = dt.timestamp();
println!("{}", ts);
}
use chrono::{DateTime, Local}; fn main() { let dt: DateTime<Local> = Local::now(); let ts: i64 = dt.timestamp(); println!("{}", ts); }
use chrono::{DateTime, Local};

fn main() {

   let dt: DateTime<Local> = Local::now();
    let ts: i64 = dt.timestamp();

    println!("{}", ts);


}

実行結果
1706796096

IT

Posted by arkgame