pub trait INetCfgComponentSetup_Impl: Sized {
    // Required methods
    fn Install(&self, dwsetupflags: u32) -> Result<()>;
    fn Upgrade(&self, dwsetupflags: u32, dwupgradefombuildno: u32) -> Result<()>;
    fn ReadAnswerFile(
        &self,
        pszwanswerfile: &PCWSTR,
        pszwanswersections: &PCWSTR
    ) -> Result<()>;
    fn Removing(&self) -> Result<()>;
}

Required Methods§

fn Install(&self, dwsetupflags: u32) -> Result<()>

fn Upgrade(&self, dwsetupflags: u32, dwupgradefombuildno: u32) -> Result<()>

fn ReadAnswerFile( &self, pszwanswerfile: &PCWSTR, pszwanswersections: &PCWSTR ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§