pub trait GetDataType {
// Required method
fn dtype() -> DataType
where Self: Sized;
}Expand description
A trait for types that can provide their corresponding DataType.
Required Methods§
Implementations on Foreign Types§
Implementors§
impl GetDataType for TimeDelta
impl<U: TimeUnitTrait> GetDataType for DateTime<U>
Available on crate feature
time only.