pub unsafe extern "C" fn tsk_edge_table_set_columns(
    self_: *mut tsk_edge_table_t,
    num_rows: tsk_size_t,
    left: *const f64,
    right: *const f64,
    parent: *const tsk_id_t,
    child: *const tsk_id_t,
    metadata: *const c_char,
    metadata_offset: *const tsk_size_t
) -> c_int
Expand description

@brief Replace this table’s data by copying from a set of column arrays

@rst Clears the data columns of this table and then copies column data from the specified set of arrays. The supplied arrays should all contain data on the same number of rows. The metadata schema is not affected. @endrst

@param self A pointer to a tsk_edge_table_t object. @param num_rows The number of rows to copy from the specifed arrays. @param left The array of double left values to be copied. @param right The array of double right values to be copied. @param parent The array of tsk_id_t parent values to be copied. @param child The array of tsk_id_t child values to be copied. @param metadata The array of char metadata values to be copied. @param metadata_offset The array of tsk_size_t metadata offset values to be copied. @return Return 0 on success or a negative value on failure.