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