pub trait ToDFSchemawhere
    Self: Sized,
{ fn to_dfschema(self) -> Result<DFSchema>; fn to_dfschema_ref(self) -> Result<DFSchemaRef> { ... } }
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