(&self)
| 1189 | /// SAFETY: Correctly implements the contract of Arrow Arrays |
| 1190 | unsafe impl<T: ArrowPrimitiveType> Array for PrimitiveArray<T> { |
| 1191 | fn as_any(&self) -> &dyn Any { |
| 1192 | self |
| 1193 | } |
| 1194 | |
| 1195 | fn to_data(&self) -> ArrayData { |
| 1196 | self.clone().into() |
no outgoing calls