(data: ArrayData)
| 252 | |
| 253 | impl From<ArrayData> for MapArray { |
| 254 | fn from(data: ArrayData) -> Self { |
| 255 | Self::try_new_from_array_data(data) |
| 256 | .expect("Expected infallible creation of MapArray from ArrayData failed") |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | impl From<MapArray> for ArrayData { |
nothing calls this directly
no test coverage detected