ObjectPropertyRelease

Type Alias ObjectPropertyRelease 

Source
pub type ObjectPropertyRelease = Option<unsafe extern "C" fn(*mut Object, *const i8, *mut c_void)>;
Expand description

ObjectPropertyRelease: @obj: the object that owns the property @name: the name of the property @opaque: the opaque registered with the property

Called when a property is removed from a object.

Aliased Type§

pub enum ObjectPropertyRelease {
    None,
    Some(unsafe extern "C" fn(*mut Object, *const i8, *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.