pub trait Table {
// Required method
fn table(self) -> TableStruct;
}Expand description
Trait to convert raw type into table
Required Methods§
Sourcefn table(self) -> TableStruct
fn table(self) -> TableStruct
Converts raw type to a table
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".