[][src]Struct uikit_sys::CFBinaryHeapCallBacks

#[repr(C)]pub struct CFBinaryHeapCallBacks {
    pub version: CFIndex,
    pub retain: Option<unsafe extern "C" fn(allocator: CFAllocatorRef, ptr: *const c_void) -> *const c_void>,
    pub release: Option<unsafe extern "C" fn(allocator: CFAllocatorRef, ptr: *const c_void)>,
    pub copyDescription: Option<unsafe extern "C" fn(ptr: *const c_void) -> CFStringRef>,
    pub compare: Option<unsafe extern "C" fn(ptr1: *const c_void, ptr2: *const c_void, context: *mut c_void) -> CFComparisonResult>,
}

Fields

version: CFIndexretain: Option<unsafe extern "C" fn(allocator: CFAllocatorRef, ptr: *const c_void) -> *const c_void>release: Option<unsafe extern "C" fn(allocator: CFAllocatorRef, ptr: *const c_void)>copyDescription: Option<unsafe extern "C" fn(ptr: *const c_void) -> CFStringRef>compare: Option<unsafe extern "C" fn(ptr1: *const c_void, ptr2: *const c_void, context: *mut c_void) -> CFComparisonResult>

Trait Implementations

impl Clone for CFBinaryHeapCallBacks[src]

impl Copy for CFBinaryHeapCallBacks[src]

impl Debug for CFBinaryHeapCallBacks[src]

impl Default for CFBinaryHeapCallBacks[src]

Auto Trait Implementations

impl RefUnwindSafe for CFBinaryHeapCallBacks

impl Send for CFBinaryHeapCallBacks

impl Sync for CFBinaryHeapCallBacks

impl Unpin for CFBinaryHeapCallBacks

impl UnwindSafe for CFBinaryHeapCallBacks

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.