Question: I am using this rust code to get the timestamp, but the time without time zone: the timestamp result is 2022-08-30 13:00:15, the actual wanted result is: 2022-08-30 21:00:15. Then I tried to set the timezone: the result is ...
Question: While parsing strings with Rust chrono::NaiveTime::parse_from_str(), it appears that parsing AM works but PM doesn’t work (returns ParseErrorKind::Impossible). Is there a reason for the following failure? The first example time_am is a time string with AM that parses correctly. ...