pub trait IRunningTask_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn InstanceGuid(&self) -> Result<BSTR>;
    fn Path(&self) -> Result<BSTR>;
    fn State(&self) -> Result<TASK_STATE>;
    fn CurrentAction(&self) -> Result<BSTR>;
    fn Stop(&self) -> Result<()>;
    fn Refresh(&self) -> Result<()>;
    fn EnginePID(&self) -> Result<u32>;
}

Required Methods§

fn Name(&self) -> Result<BSTR>

fn InstanceGuid(&self) -> Result<BSTR>

fn Path(&self) -> Result<BSTR>

fn State(&self) -> Result<TASK_STATE>

fn CurrentAction(&self) -> Result<BSTR>

fn Stop(&self) -> Result<()>

fn Refresh(&self) -> Result<()>

fn EnginePID(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§