Trait Structure

Source
pub trait Structure {
    // Required method
    fn structure(&self) -> TableStructure<'_>;
}
Expand description

Trait to put the structure method on Tables.

Required Methods§

Source

fn structure(&self) -> TableStructure<'_>

Returns an iterator over the structure of this table.

Implementors§