#[repr(C)]pub struct IAsyncOperationWithProgress_Vtbl<TResult, TProgress>where
TResult: RuntimeType + 'static,
TProgress: RuntimeType + 'static,{
pub base__: IInspectable_Vtbl,
pub SetProgress: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub Progress: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT,
pub SetCompleted: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub Completed: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT,
pub GetResults: unsafe extern "system" fn(_: *mut c_void, _: *mut AbiType<TResult>) -> HRESULT,
pub TResult: PhantomData<TResult>,
pub TProgress: PhantomData<TProgress>,
}
Fields§
§base__: IInspectable_Vtbl
§SetProgress: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§Progress: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT
§SetCompleted: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT
§Completed: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT
§GetResults: unsafe extern "system" fn(_: *mut c_void, _: *mut AbiType<TResult>) -> HRESULT
§TResult: PhantomData<TResult>
§TProgress: PhantomData<TProgress>
Implementations§
§impl<TResult: RuntimeType + 'static, TProgress: RuntimeType + 'static> IAsyncOperationWithProgress_Vtbl<TResult, TProgress>
impl<TResult: RuntimeType + 'static, TProgress: RuntimeType + 'static> IAsyncOperationWithProgress_Vtbl<TResult, TProgress>
pub const fn new<Identity, const OFFSET: isize>() -> IAsyncOperationWithProgress_Vtbl<TResult, TProgress>where
Identity: IAsyncOperationWithProgress_Impl<TResult, TProgress> + IUnknownImpl,
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl<TResult, TProgress> Freeze for IAsyncOperationWithProgress_Vtbl<TResult, TProgress>
impl<TResult, TProgress> RefUnwindSafe for IAsyncOperationWithProgress_Vtbl<TResult, TProgress>where
TResult: RefUnwindSafe,
TProgress: RefUnwindSafe,
impl<TResult, TProgress> Send for IAsyncOperationWithProgress_Vtbl<TResult, TProgress>
impl<TResult, TProgress> Sync for IAsyncOperationWithProgress_Vtbl<TResult, TProgress>
impl<TResult, TProgress> Unpin for IAsyncOperationWithProgress_Vtbl<TResult, TProgress>
impl<TResult, TProgress> UnwindSafe for IAsyncOperationWithProgress_Vtbl<TResult, TProgress>where
TResult: UnwindSafe,
TProgress: 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