1
2
3
4
5
use types::DataType;

pub trait DataTypeWrapper<T> {
    fn data_type(&self) -> &DataType;
}