Trait ruststep::tables::TableInit[][src]

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