Skip to main content

StructTypeExt

Trait StructTypeExt 

Source
pub trait StructTypeExt {
    // Required methods
    fn get_invariants(&self) -> Result<Vec<Invariant>, Error>;
    fn get_generated_columns(&self) -> Result<Vec<GeneratedColumn>, Error>;
}
Expand description

The deltalake crate is currently just a meta-package shim for deltalake-core Trait to add convenience functions to struct type

Required Methods§

Source

fn get_invariants(&self) -> Result<Vec<Invariant>, Error>

Get all invariants in the schemas

Source

fn get_generated_columns(&self) -> Result<Vec<GeneratedColumn>, Error>

Get all generated column expressions

Implementors§