pub type duckdb_table_function_bind_t = Option<unsafe extern "C" fn(info: duckdb_bind_info)>;Expand description
! The bind function of the table function.
Aliased Type§
enum duckdb_table_function_bind_t {
None,
Some(unsafe extern "C" fn(_: *mut _duckdb_bind_info)),
}Variants§
None
No value.
Some(unsafe extern "C" fn(_: *mut _duckdb_bind_info))
Some value of type T.