#[unsafe(no_mangle)]pub unsafe extern "C" fn laminar_stream_try_next(
stream: *mut LaminarQueryStream,
out: *mut *mut LaminarRecordBatch,
) -> i32Expand description
Try to get the next batch from a query stream (non-blocking). Sets *out to NULL if none available.
ยงSafety
stream and out must be valid non-null pointers.