pub fn coerce_string_to_datetime(
infer: &mut DatetimeInfer<Int64Type>,
ca: &ChunkedArray<StringType>,
tz: Option<&TimeZone>,
ambiguous: &ChunkedArray<StringType>,
) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>Available on crate feature
dtype-datetime and crate feature temporal and (crate features dtype-date or dtype-datetime or temporal) only.Expand description
Apply a pre-built DatetimeInfer<Int64Type> to a StringChunked, applying tz handling,
returning a DatetimeChunked. Mirrors the post-coerce_string logic in to_datetime.