pub unsafe fn import_array_from_c(
    array: Box<ArrowArray, Global>,
    data_type: DataType
) -> Result<Box<dyn Array + 'static, Global>, ArrowError>
Expand description

Imports an Array from the C data interface.

Safety

This function is intrinsically unsafe and relies on a ArrowArray valid according to the C data interface (FFI).