Trait INetCfgComponentSetup_Impl
pub trait INetCfgComponentSetup_Impl: IUnknownImpl {
// 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.