pub trait IWinSATInitiateEvents_Impl: Sized {
    // Required methods
    fn WinSATComplete(
        &self,
        hresult: HRESULT,
        strdescription: &PCWSTR
    ) -> Result<()>;
    fn WinSATUpdate(
        &self,
        ucurrenttick: u32,
        uticktotal: u32,
        strcurrentstate: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn WinSATComplete( &self, hresult: HRESULT, strdescription: &PCWSTR ) -> Result<()>

fn WinSATUpdate( &self, ucurrenttick: u32, uticktotal: u32, strcurrentstate: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§