你好,我用chrono::offset::Utc::now()取当前时间但它会返回以下代码:2022年12月1日星期一,我需要这样的东西:2022年12月1日星期一07:56:54.我该怎么做?
chrono::offset::Utc::now()
6tqwzwtp1#
您可以使用to_rfc3339_opts。它接受秒格式的参数,以及Z是否应该存在。
to_rfc3339_opts
Z
let time = chrono::offset::Utc::now(); let formatted: String = time.to_rfc3339_opts(chrono::SecondsFormat::Secs, true); println!("{:?}", time); // 2022-12-01T08:32:20.580242150Z println!("{}", formatted); // 2022-12-01T08:32:20Z
Rust Playground
1条答案
按热度按时间6tqwzwtp1#
您可以使用
to_rfc3339_opts
。它接受秒格式的参数,以及Z
是否应该存在。Rust Playground