rutie/typed_data/
data_type_wrapper.rs

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