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)),
}