#[unsafe(no_mangle)]pub unsafe extern "C" fn laminar_schema_field_name(
schema: *mut LaminarSchema,
index: usize,
out: *mut *mut c_char,
) -> i32Expand description
Get the name of a field by index. Caller frees the result with laminar_string_free.
ยงSafety
schema and out must be valid non-null pointers; index must be in range.