pub trait HasDataTypes {
    // Required method
    fn datatypes(&self) -> &Vec<DataType>;
}
Expand description

Trait that is used on multiple objects to get their data type

Required Methods§

source

fn datatypes(&self) -> &Vec<DataType>

Return a reference to the datatype of the object implementing this trait

Implementors§