[][src]Struct winapi::um::taskschd::IRunningTaskVtbl

#[repr(C)]pub struct IRunningTaskVtbl {
    pub parent: IDispatchVtbl,
    pub get_Name: unsafe extern "system" fn(This: *mut IRunningTask, pName: *mut BSTR) -> HRESULT,
    pub get_InstanceGuid: unsafe extern "system" fn(This: *mut IRunningTask, pGuid: *mut BSTR) -> HRESULT,
    pub get_Path: unsafe extern "system" fn(This: *mut IRunningTask, pPath: *mut BSTR) -> HRESULT,
    pub get_State: unsafe extern "system" fn(This: *mut IRunningTask, pState: *mut TASK_STATE) -> HRESULT,
    pub get_CurrentAction: unsafe extern "system" fn(This: *mut IRunningTask, pName: *mut BSTR) -> HRESULT,
    pub Stop: unsafe extern "system" fn(This: *mut IRunningTask) -> HRESULT,
    pub Refresh: unsafe extern "system" fn(This: *mut IRunningTask) -> HRESULT,
    pub get_EnginePID: unsafe extern "system" fn(This: *mut IRunningTask, pPID: *mut DWORD) -> HRESULT,
}

Fields

parent: IDispatchVtblget_Name: unsafe extern "system" fn(This: *mut IRunningTask, pName: *mut BSTR) -> HRESULTget_InstanceGuid: unsafe extern "system" fn(This: *mut IRunningTask, pGuid: *mut BSTR) -> HRESULTget_Path: unsafe extern "system" fn(This: *mut IRunningTask, pPath: *mut BSTR) -> HRESULTget_State: unsafe extern "system" fn(This: *mut IRunningTask, pState: *mut TASK_STATE) -> HRESULTget_CurrentAction: unsafe extern "system" fn(This: *mut IRunningTask, pName: *mut BSTR) -> HRESULTStop: unsafe extern "system" fn(This: *mut IRunningTask) -> HRESULTRefresh: unsafe extern "system" fn(This: *mut IRunningTask) -> HRESULTget_EnginePID: unsafe extern "system" fn(This: *mut IRunningTask, pPID: *mut DWORD) -> HRESULT

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.