Type Alias GTypeInterfaceCheckFunc

Source
pub type GTypeInterfaceCheckFunc = Option<unsafe extern "C" fn(check_data: gpointer, g_iface: gpointer)>;
Expand description

GTypeInterfaceCheckFunc: @check_data: data passed to g_type_add_interface_check() @g_iface: (type GObject.TypeInterface): the interface that has been initialized

A callback called after an interface vtable is initialized.

See g_type_add_interface_check().

Since: 2.4

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.