pub(crate) fn string_to_timestamp_millis_formatted(
s: &str,
format: &str,
) -> Result<i64>Expand description
Accepts a string with a chrono format and converts it to a
millisecond precision timestamp.
See chrono::format::strftime for the full set of supported formats.
Internally, this function uses the chrono library for the
datetime parsing
ยงTimezone / Offset Handling
Numerical values of timestamps are stored compared to offset UTC.
Any timestamp in the formatting string is handled according to the rules
defined by chrono.