1
0
mirror of https://github.com/bspeice/dtparse synced 2025-04-04 13:01:29 -04:00
This commit is contained in:
taichong 2024-07-16 22:18:11 +08:00
parent 317a854b9f
commit 5a0b0358b1

View File

@ -43,6 +43,9 @@ fn main() {
) )
.unwrap() .unwrap()
.0, .0,
NaiveDate::from_ymd_opt(2015, 9, 10).unwrap().and_hms_opt(10, 20, 0).unwrap() NaiveDate::from_ymd_opt(2015, 9, 10)
.unwrap()
.and_hms_opt(10, 20, 0)
.unwrap()
); );
} }