Struct ITaskHandler_Vtbl
#[repr(C)]pub struct ITaskHandler_Vtbl {
pub base__: IUnknown_Vtbl,
pub Start: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void) -> HRESULT,
pub Stop: unsafe extern "system" fn(_: *mut c_void, _: *mut HRESULT) -> HRESULT,
pub Pause: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
pub Resume: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§Start: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void) -> HRESULT
§Stop: unsafe extern "system" fn(_: *mut c_void, _: *mut HRESULT) -> HRESULT
§Pause: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
§Resume: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
Implementations§
§impl ITaskHandler_Vtbl
impl ITaskHandler_Vtbl
pub const fn new<Identity: ITaskHandler_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for ITaskHandler_Vtbl
impl RefUnwindSafe for ITaskHandler_Vtbl
impl Send for ITaskHandler_Vtbl
impl Sync for ITaskHandler_Vtbl
impl Unpin for ITaskHandler_Vtbl
impl UnwindSafe for ITaskHandler_Vtbl
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