1use crate::types::DataType; 2 3pub trait DataTypeWrapper<T> { 4 fn data_type(&self) -> &DataType; 5}