#[repr(C)]
pub struct CFRunLoopSourceContext {
pub version: CFIndex,
pub info: *mut c_void,
pub retain: extern fn(_: *const c_void) -> *const c_void,
pub release: extern fn(_: *const c_void),
pub copyDescription: extern fn(_: *const c_void) -> CFStringRef,
pub equal: extern fn(_: *const c_void, _: *const c_void) -> Boolean,
pub hash: extern fn(_: *const c_void) -> CFHashCode,
pub schedule: extern fn(_: *const c_void, _: CFRunLoopRef, _: CFStringRef),
pub cancel: extern fn(_: *const c_void, _: CFRunLoopRef, _: CFStringRef),
pub perform: extern fn(_: *const c_void),
}
Fields
version: CFIndex
info: *mut c_void
retain: extern fn(_: *const c_void) -> *const c_void
release: extern fn(_: *const c_void)
copyDescription: extern fn(_: *const c_void) -> CFStringRef
equal: extern fn(_: *const c_void, _: *const c_void) -> Boolean
hash: extern fn(_: *const c_void) -> CFHashCode
schedule: extern fn(_: *const c_void, _: CFRunLoopRef, _: CFStringRef)
cancel: extern fn(_: *const c_void, _: CFRunLoopRef, _: CFStringRef)
perform: extern fn(_: *const c_void)