Trait IGameExplorer2_Impl
pub trait IGameExplorer2_Impl: IUnknownImpl {
// Required methods
fn InstallGame(
&self,
binarygdfpath: &PCWSTR,
installdirectory: &PCWSTR,
installscope: GAME_INSTALL_SCOPE,
) -> Result<()>;
fn UninstallGame(&self, binarygdfpath: &PCWSTR) -> Result<()>;
fn CheckAccess(&self, binarygdfpath: &PCWSTR) -> Result<BOOL>;
}
Required Methods§
fn InstallGame( &self, binarygdfpath: &PCWSTR, installdirectory: &PCWSTR, installscope: GAME_INSTALL_SCOPE, ) -> Result<()>
fn UninstallGame(&self, binarygdfpath: &PCWSTR) -> Result<()>
fn CheckAccess(&self, binarygdfpath: &PCWSTR) -> Result<BOOL>
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.