Trait polars::prelude::chunkedarray::string::infer::StrpTimeParser

source ·
pub trait StrpTimeParser<T> {
    // Required method
    fn parse_bytes(
        &mut self,
        val: &[u8],
        time_unit: Option<TimeUnit>
    ) -> Option<T>;
}
Available on crate feature temporal only.

Required Methods§

source

fn parse_bytes(&mut self, val: &[u8], time_unit: Option<TimeUnit>) -> Option<T>

Implementors§

source§

impl StrpTimeParser<i32> for DatetimeInfer<Int32Type>

Available on crate feature dtype-date only.
source§

impl StrpTimeParser<i64> for DatetimeInfer<Int64Type>

Available on crate feature dtype-datetime only.