pub trait ToDFSchema {
    fn to_dfschema(self) -> Result<DFSchema, DataFusionError>;

    fn to_dfschema_ref(self) -> Result<Arc<DFSchema>, DataFusionError> { ... }
}
Expand description

Convenience trait to convert Schema like things to DFSchema and DFSchemaRef with fewer keystrokes

Required methods

Attempt to create a DSSchema

Provided methods

Attempt to create a DSSchemaRef

Implementations on Foreign Types

Implementors