pub trait ITaskHandler_Impl: Sized {
    // Required methods
    fn Start(
        &self,
        phandlerservices: Option<&IUnknown>,
        data: &BSTR
    ) -> Result<()>;
    fn Stop(&self) -> Result<HRESULT>;
    fn Pause(&self) -> Result<()>;
    fn Resume(&self) -> Result<()>;
}

Required Methods§

fn Start(&self, phandlerservices: Option<&IUnknown>, data: &BSTR) -> Result<()>

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

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

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

Object Safety§

This trait is not object safe.

Implementors§