pub unsafe extern "C" fn duckdb_vector_assign_string_element_len(
    vector: duckdb_vector,
    index: idx_t,
    str_: *const c_char,
    str_len: idx_t
)
Expand description

Assigns a string element in the vector at the specified location.

vector: The vector to alter index: The row position in the vector to assign the string to str: The string str_len: The length of the string (in bytes)