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.pub trait StrpTimeParser<T> {
// Required method
fn parse_bytes(
&mut self,
val: &[u8],
time_unit: Option<TimeUnit>,
) -> Option<T>;
}
temporal
only.