windows::Win32::Gaming

Trait IGameExplorer_Impl

pub trait IGameExplorer_Impl: IUnknownImpl {
    // Required methods
    fn AddGame(
        &self,
        bstrgdfbinarypath: &BSTR,
        bstrgameinstalldirectory: &BSTR,
        installscope: GAME_INSTALL_SCOPE,
        pguidinstanceid: *mut GUID,
    ) -> Result<()>;
    fn RemoveGame(&self, guidinstanceid: &GUID) -> Result<()>;
    fn UpdateGame(&self, guidinstanceid: &GUID) -> Result<()>;
    fn VerifyAccess(&self, bstrgdfbinarypath: &BSTR) -> Result<BOOL>;
}

Required Methods§

fn AddGame( &self, bstrgdfbinarypath: &BSTR, bstrgameinstalldirectory: &BSTR, installscope: GAME_INSTALL_SCOPE, pguidinstanceid: *mut GUID, ) -> Result<()>

fn RemoveGame(&self, guidinstanceid: &GUID) -> Result<()>

fn UpdateGame(&self, guidinstanceid: &GUID) -> Result<()>

fn VerifyAccess(&self, bstrgdfbinarypath: &BSTR) -> 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.

Implementors§