pub trait TableInit: Default {
    fn append_data_section(&mut self, section: &DataSection) -> Result<()>;

    fn from_data_section(section: &DataSection) -> Result<Self> { ... }
    fn from_data_sections(sections: &[DataSection]) -> Result<Self> { ... }
}
Expand description

Create Table from DataSection

Required Methods

Provided Methods

Implementors