Returns the total encoded length (including null byte) for a value of type `T::Native`
(_col: &PrimitiveArray<T>)
| 206 | |
| 207 | /// Returns the total encoded length (including null byte) for a value of type `T::Native` |
| 208 | pub const fn encoded_len<T>(_col: &PrimitiveArray<T>) -> usize |
| 209 | where |
| 210 | T: ArrowPrimitiveType, |
| 211 | T::Native: FixedLengthEncoding, |
| 212 | { |
| 213 | T::Native::ENCODED_LEN |
| 214 | } |
| 215 | |
| 216 | /// Fixed width types are encoded as |
| 217 | /// |