#[repr(C)]pub struct IAsyncActionWithProgress_Vtbl<TProgress>where
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) -> HRESULT,
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) -> HRESULT
§TProgress: PhantomData<TProgress>
Implementations§
§impl<TProgress: RuntimeType + 'static> IAsyncActionWithProgress_Vtbl<TProgress>
impl<TProgress: RuntimeType + 'static> IAsyncActionWithProgress_Vtbl<TProgress>
pub const fn new<Identity, const OFFSET: isize>() -> IAsyncActionWithProgress_Vtbl<TProgress>where
Identity: IAsyncActionWithProgress_Impl<TProgress> + IUnknownImpl,
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl<TProgress> Freeze for IAsyncActionWithProgress_Vtbl<TProgress>
impl<TProgress> RefUnwindSafe for IAsyncActionWithProgress_Vtbl<TProgress>where
TProgress: RefUnwindSafe,
impl<TProgress> Send for IAsyncActionWithProgress_Vtbl<TProgress>where
TProgress: Send,
impl<TProgress> Sync for IAsyncActionWithProgress_Vtbl<TProgress>where
TProgress: Sync,
impl<TProgress> Unpin for IAsyncActionWithProgress_Vtbl<TProgress>where
TProgress: Unpin,
impl<TProgress> UnwindSafe for IAsyncActionWithProgress_Vtbl<TProgress>where
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