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