Type Alias libduckdb_sys::duckdb_replacement_callback_t

source ·
pub type duckdb_replacement_callback_t = Option<unsafe extern "C" fn(info: duckdb_replacement_scan_info, table_name: *const c_char, data: *mut c_void)>;
Expand description

! A replacement scan function that can be added to a database.

Aliased Type§

enum duckdb_replacement_callback_t {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *const i8, _: *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.