Type Alias libduckdb_sys::duckdb_delete_callback_t

source ·
pub type duckdb_delete_callback_t = Option<unsafe extern "C" fn(data: *mut c_void)>;
Expand description

! The callback that will be called to destroy data, e.g., ! bind data (if any), init data (if any), extra data for replacement scans (if any)

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.