use chrono::{DateTime, Utc}; // 0.4.15 use std::time::SystemTime; fn main() { let now = SystemTime::now(); let now: DateTime<Utc> = now.into(); let now ...
確定! 回上一頁