#[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,
/* private fields */
}
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
Implementations§
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