pub trait IActionProgressDialog_Impl: Sized {
    // Required methods
    fn Initialize(
        &self,
        flags: u32,
        psztitle: &PCWSTR,
        pszcancel: &PCWSTR
    ) -> Result<()>;
    fn Stop(&self) -> Result<()>;
}

Required Methods§

fn Initialize( &self, flags: u32, psztitle: &PCWSTR, pszcancel: &PCWSTR ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§