#[repr(C)]pub struct CFRunLoopTimerContext {
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>,
}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>Auto Trait Implementations§
impl RefUnwindSafe for CFRunLoopTimerContext
impl !Send for CFRunLoopTimerContext
impl !Sync for CFRunLoopTimerContext
impl Unpin for CFRunLoopTimerContext
impl UnwindSafe for CFRunLoopTimerContext
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