(self, col: impl Into<ColId>)
| 1804 | /// and read the value of that column from `self`. |
| 1805 | #[inline] |
| 1806 | pub fn read_col<T: ReadColumn>(self, col: impl Into<ColId>) -> Result<T, TypeError> { |
| 1807 | T::read_column(self, col.into().idx()) |
| 1808 | } |
| 1809 | |
| 1810 | /// Serializes the `cols` of `self` using `ser`. |
| 1811 | /// |
no test coverage detected