Skip to main content

Structure

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§