#[repr(C)]pub struct CFDictionaryKeyCallBacks {
pub version: CFIndex,
pub retain: CFDictionaryRetainCallBack,
pub release: CFDictionaryReleaseCallBack,
pub copyDescription: CFDictionaryCopyDescriptionCallBack,
pub equal: CFDictionaryEqualCallBack,
pub hash: CFDictionaryHashCallBack,
}Expand description
Apple SDK struct CFDictionaryKeyCallBacks.
Fields§
§version: CFIndex§retain: CFDictionaryRetainCallBack§release: CFDictionaryReleaseCallBack§copyDescription: CFDictionaryCopyDescriptionCallBack§equal: CFDictionaryEqualCallBack§hash: CFDictionaryHashCallBackTrait Implementations§
Source§impl Clone for CFDictionaryKeyCallBacks
impl Clone for CFDictionaryKeyCallBacks
impl Copy for CFDictionaryKeyCallBacks
Auto Trait Implementations§
impl Freeze for CFDictionaryKeyCallBacks
impl RefUnwindSafe for CFDictionaryKeyCallBacks
impl Send for CFDictionaryKeyCallBacks
impl Sync for CFDictionaryKeyCallBacks
impl Unpin for CFDictionaryKeyCallBacks
impl UnsafeUnpin for CFDictionaryKeyCallBacks
impl UnwindSafe for CFDictionaryKeyCallBacks
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