windows::Win32::UI::Shell

Trait IAppPublisher_Impl

pub trait IAppPublisher_Impl: IUnknownImpl {
    // Required methods
    fn GetNumberOfCategories(&self) -> Result<u32>;
    fn GetCategories(&self) -> Result<APPCATEGORYINFOLIST>;
    fn GetNumberOfApps(&self) -> Result<u32>;
    fn EnumApps(
        &self,
        pappcategoryid: *const GUID,
    ) -> Result<IEnumPublishedApps>;
}

Required Methods§

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

fn GetCategories(&self) -> Result<APPCATEGORYINFOLIST>

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

fn EnumApps(&self, pappcategoryid: *const GUID) -> Result<IEnumPublishedApps>

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§