pub trait TCFTypeRef {
    fn as_void_ptr(&self) -> *const c_void;
    unsafe fn from_void_ptr(ptr: *const c_void) -> Self;
}
Expand description

Trait for all types which are Core Foundation reference types.

Required Methods

Implementations on Foreign Types

Implementors