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();
Use NaiveDateTime::signed_duration_since:
println!("{:?}", dt1.signed_duration_since(now))
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