Function libduckdb_sys::duckdb_create_struct_value
source ยท pub unsafe extern "C" fn duckdb_create_struct_value(
type_: duckdb_logical_type,
values: *mut duckdb_value,
) -> duckdb_value
Expand description
Creates a struct value from a type and an array of values
type: The type of the struct
values: The values for the struct fields
returns: The value. This must be destroyed with duckdb_destroy_value
.