pub trait LoaderConfig {
    // Required method
    fn load_table_data(&self, def: &TableDef) -> bool;
}
Expand description

Configuration for the SchemaLoader

Required Methods§

source

fn load_table_data(&self, def: &TableDef) -> bool

Whether to process to table specified by def

Implementors§