Type Alias libduckdb_sys::duckdb_table_function_t

source ·
pub type duckdb_table_function_t = Option<unsafe extern "C" fn(info: duckdb_function_info, output: duckdb_data_chunk)>;
Expand description

! The main function of the table function.

Aliased Type§

enum duckdb_table_function_t {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _duckdb_data_chunk)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _duckdb_data_chunk))

Some value of type T.