#[repr(C)]pub struct CFRunLoopSourceContext {
pub version: CFIndex,
pub info: *mut c_void,
pub retain: Option<extern "C" fn(info: *const c_void) -> *const c_void>,
pub release: Option<extern "C" fn(info: *const c_void)>,
pub copyDescription: Option<extern "C" fn(info: *const c_void) -> CFStringRef>,
pub equal: Option<extern "C" fn(info1: *const c_void, info2: *const c_void) -> Boolean>,
pub hash: Option<extern "C" fn(info: *const c_void) -> CFHashCode>,
pub schedule: Option<extern "C" fn(info: *const c_void, rl: CFRunLoopRef, mode: CFStringRef)>,
pub cancel: Option<extern "C" fn(info: *const c_void, rl: CFRunLoopRef, mode: CFStringRef)>,
pub perform: extern "C" fn(info: *const c_void),
}
Fields§
§version: CFIndex
§info: *mut c_void
§retain: Option<extern "C" fn(info: *const c_void) -> *const c_void>
§release: Option<extern "C" fn(info: *const c_void)>
§copyDescription: Option<extern "C" fn(info: *const c_void) -> CFStringRef>
§equal: Option<extern "C" fn(info1: *const c_void, info2: *const c_void) -> Boolean>
§hash: Option<extern "C" fn(info: *const c_void) -> CFHashCode>
§schedule: Option<extern "C" fn(info: *const c_void, rl: CFRunLoopRef, mode: CFStringRef)>
§cancel: Option<extern "C" fn(info: *const c_void, rl: CFRunLoopRef, mode: CFStringRef)>
§perform: extern "C" fn(info: *const c_void)
Auto Trait Implementations§
impl RefUnwindSafe for CFRunLoopSourceContext
impl !Send for CFRunLoopSourceContext
impl !Sync for CFRunLoopSourceContext
impl Unpin for CFRunLoopSourceContext
impl UnwindSafe for CFRunLoopSourceContext
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more