The callback used to get next array
(
stream: *mut FFI_ArrowArrayStream,
array: *mut FFI_ArrowArray,
)
| 133 | |
| 134 | // The callback used to get next array |
| 135 | unsafe extern "C" fn get_next( |
| 136 | stream: *mut FFI_ArrowArrayStream, |
| 137 | array: *mut FFI_ArrowArray, |
| 138 | ) -> c_int { |
| 139 | ExportedArrayStream { stream }.get_next(array) |
| 140 | } |
| 141 | |
| 142 | // The callback used to get the error from last operation on the `FFI_ArrowArrayStream` |
| 143 | unsafe extern "C" fn get_last_error(stream: *mut FFI_ArrowArrayStream) -> *const c_char { |
no test coverage detected