Struct windows::Foundation::Collections::IMapView_Vtbl
#[repr(C)]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,
pub K: PhantomData<K>,
pub V: PhantomData<V>,
}
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) -> HRESULT
§K: PhantomData<K>
§V: PhantomData<V>
Implementations§
§impl<K: RuntimeType + 'static, V: RuntimeType + 'static> IMapView_Vtbl<K, V>
impl<K: RuntimeType + 'static, V: RuntimeType + 'static> IMapView_Vtbl<K, V>
pub const fn new<Identity, const OFFSET: isize>() -> IMapView_Vtbl<K, V>where
Identity: IMapView_Impl<K, V> + IUnknownImpl,
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl<K, V> Freeze for IMapView_Vtbl<K, V>
impl<K, V> RefUnwindSafe for IMapView_Vtbl<K, V>where
K: RefUnwindSafe,
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> UnwindSafe for IMapView_Vtbl<K, V>where
K: UnwindSafe,
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