pub type CFSetCopyDescriptionCallBack = Option<unsafe extern "C-unwind" fn(*const c_void) -> *const CFString>;Available on crate feature
CFSet only.Expand description
Type of the callback function used by CFSets for describing values.
Parameter value: The value to describe.
Returns: A description of the specified value.
See also Apple’s documentation
Aliased Type§
pub enum CFSetCopyDescriptionCallBack {
None,
Some(unsafe extern "C-unwind" fn(*const c_void) -> *const CFString),
}