pub trait WithDataType {
// Required method
fn default_data_type() -> DataType;
}
Expand description
Required Methods§
Sourcefn default_data_type() -> DataType
fn default_data_type() -> DataType
Returns the most obvious DataType
for the rust type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.