pub trait Cell {
    fn cell(self) -> CellStruct;
}
Expand description

Trait to convert raw types into cells

Required Methods

Converts raw type to cell of a table

Implementors