(&self, col: Self::ArrowColumn)
| 1697 | type Encoder = SourceDataColumnarEncoder; |
| 1698 | |
| 1699 | fn decoder(&self, col: Self::ArrowColumn) -> Result<Self::Decoder, anyhow::Error> { |
| 1700 | SourceDataColumnarDecoder::new(col, self) |
| 1701 | } |
| 1702 | |
| 1703 | fn encoder(&self) -> Result<Self::Encoder, anyhow::Error> { |
| 1704 | Ok(SourceDataColumnarEncoder::new(self)) |