The callback used to get array schema
(
stream: *mut FFI_ArrowArrayStream,
schema: *mut FFI_ArrowSchema,
)
| 125 | |
| 126 | // The callback used to get array schema |
| 127 | unsafe extern "C" fn get_schema( |
| 128 | stream: *mut FFI_ArrowArrayStream, |
| 129 | schema: *mut FFI_ArrowSchema, |
| 130 | ) -> c_int { |
| 131 | ExportedArrayStream { stream }.get_schema(schema) |
| 132 | } |
| 133 | |
| 134 | // The callback used to get next array |
| 135 | unsafe extern "C" fn get_next( |
no test coverage detected