I was wondering if there is a more idiomatic way to retrieve a date like "today at 00:00"? This is what I have come up with but it's full of `unwrap()`: ``` Local.from_local_datetime(&Local::now().date_naive().and_hms_opt(0, 0, 0).unwrap()).unwrap() ```