How to find the difference between 2 NaiveDateTimes?

折月煮酒 提交于 2019-11-28 12:57:52

问题


I am using chrono. I have now() and some other NaiveDateTime. How can I find a difference between them?

let now = Utc::now().naive_utc();
let dt1 = get_my_naive_datetime();

回答1:


Use NaiveDateTime::signed_duration_since:

println!("{:?}", dt1.signed_duration_since(now))

(playground)

It returns a Duration, which has &self-taking methods to yield whatever units you like, e.g. dt1.signed_duration_since(now).num_days().



来源:https://stackoverflow.com/questions/48312801/how-to-find-the-difference-between-2-naivedatetimes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!