pub struct IMapView_Vtbl<K, V>where
K: RuntimeType + 'static,
V: RuntimeType + 'static,{
pub base__: IInspectable_Vtbl,
pub Lookup: unsafe extern "system" fn(*mut c_void, AbiType<K>, *mut AbiType<V>) -> HRESULT,
pub Size: unsafe extern "system" fn(*mut c_void, *mut u32) -> HRESULT,
pub HasKey: unsafe extern "system" fn(*mut c_void, AbiType<K>, *mut bool) -> HRESULT,
pub Split: unsafe extern "system" fn(*mut c_void, *mut *mut c_void, *mut *mut c_void) -> HRESULT,
/* private fields */
}Fields§
§base__: IInspectable_Vtbl§Lookup: unsafe extern "system" fn(*mut c_void, AbiType<K>, *mut AbiType<V>) -> HRESULT§Size: unsafe extern "system" fn(*mut c_void, *mut u32) -> HRESULT§HasKey: unsafe extern "system" fn(*mut c_void, AbiType<K>, *mut bool) -> HRESULT§Split: unsafe extern "system" fn(*mut c_void, *mut *mut c_void, *mut *mut c_void) -> HRESULTImplementations§
Auto Trait Implementations§
impl<K, V> Freeze for IMapView_Vtbl<K, V>
impl<K, V> RefUnwindSafe for IMapView_Vtbl<K, V>where
unsafe extern "system" fn(*mut c_void, <K as Type<K>>::Abi, *mut <V as Type<V>>::Abi) -> HRESULT: RefUnwindSafe,
unsafe extern "system" fn(*mut c_void, <K as Type<K>>::Abi, *mut bool) -> HRESULT: RefUnwindSafe,
PhantomData<K>: RefUnwindSafe,
PhantomData<V>: RefUnwindSafe,
impl<K, V> Send for IMapView_Vtbl<K, V>
impl<K, V> Sync for IMapView_Vtbl<K, V>
impl<K, V> Unpin for IMapView_Vtbl<K, V>
impl<K, V> UnsafeUnpin for IMapView_Vtbl<K, V>where
unsafe extern "system" fn(*mut c_void, <K as Type<K>>::Abi, *mut <V as Type<V>>::Abi) -> HRESULT: UnsafeUnpin,
unsafe extern "system" fn(*mut c_void, <K as Type<K>>::Abi, *mut bool) -> HRESULT: UnsafeUnpin,
PhantomData<K>: UnsafeUnpin,
PhantomData<V>: UnsafeUnpin,
impl<K, V> UnwindSafe for IMapView_Vtbl<K, V>where
unsafe extern "system" fn(*mut c_void, <K as Type<K>>::Abi, *mut <V as Type<V>>::Abi) -> HRESULT: UnwindSafe,
unsafe extern "system" fn(*mut c_void, <K as Type<K>>::Abi, *mut bool) -> HRESULT: UnwindSafe,
PhantomData<K>: UnwindSafe,
PhantomData<V>: UnwindSafe,
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