pub trait FieldMetadataExt {
// Required methods
fn to_arrow_field(&self) -> Field;
fn arrow_data_type(&self) -> DataType;
}Expand description
Extension trait for hdbconnect FieldMetadata.
Provides convenient conversion methods for HANA metadata to Arrow types.
Required Methods§
Sourcefn to_arrow_field(&self) -> Field
fn to_arrow_field(&self) -> Field
Convert to Arrow Field.
Sourcefn arrow_data_type(&self) -> DataType
fn arrow_data_type(&self) -> DataType
Get the Arrow DataType for this field.