Trait IGameStatisticsMgr_Impl
pub trait IGameStatisticsMgr_Impl: IUnknownImpl {
// Required methods
fn GetGameStatistics(
&self,
gdfbinarypath: &PCWSTR,
opentype: GAMESTATS_OPEN_TYPE,
popenresult: *mut GAMESTATS_OPEN_RESULT,
ppistats: OutRef<'_, IGameStatistics>,
) -> Result<()>;
fn RemoveGameStatistics(&self, gdfbinarypath: &PCWSTR) -> Result<()>;
}
Required Methods§
fn GetGameStatistics( &self, gdfbinarypath: &PCWSTR, opentype: GAMESTATS_OPEN_TYPE, popenresult: *mut GAMESTATS_OPEN_RESULT, ppistats: OutRef<'_, IGameStatistics>, ) -> Result<()>
fn RemoveGameStatistics(&self, gdfbinarypath: &PCWSTR) -> 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.