pub trait Structure {
// Required method
fn structure(&self) -> TableStructure<'_>;
}Expand description
Trait to put the structure method on Tables.
Required Methods§
Sourcefn structure(&self) -> TableStructure<'_>
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".