Trait to convert raw types into cells
| 140 | |
| 141 | /// Trait to convert raw types into cells |
| 142 | pub trait Cell { |
| 143 | /// Converts raw type to cell of a table |
| 144 | fn cell(self) -> CellStruct; |
| 145 | } |
| 146 | |
| 147 | impl<T> Cell for T |
| 148 | where |
nothing calls this directly
no outgoing calls
no test coverage detected