pub trait IOpenServiceActivityManager_Impl: Sized {
    // Required methods
    fn GetCategoryEnumerator(
        &self,
        etype: OpenServiceActivityContentType
    ) -> Result<IEnumOpenServiceActivityCategory>;
    fn GetActivityByID(
        &self,
        pwzactivityid: &PCWSTR
    ) -> Result<IOpenServiceActivity>;
    fn GetActivityByHomepageAndCategory(
        &self,
        pwzhomepage: &PCWSTR,
        pwzcategory: &PCWSTR
    ) -> Result<IOpenServiceActivity>;
    fn GetVersionCookie(&self) -> Result<u32>;
}

Required Methods§

fn GetCategoryEnumerator( &self, etype: OpenServiceActivityContentType ) -> Result<IEnumOpenServiceActivityCategory>

fn GetActivityByID( &self, pwzactivityid: &PCWSTR ) -> Result<IOpenServiceActivity>

fn GetActivityByHomepageAndCategory( &self, pwzhomepage: &PCWSTR, pwzcategory: &PCWSTR ) -> Result<IOpenServiceActivity>

fn GetVersionCookie(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§