windows::Win32::Storage::Packaging::Appx

Trait IAppxManifestReader_Impl

pub trait IAppxManifestReader_Impl: IUnknownImpl {
    // Required methods
    fn GetPackageId(&self) -> Result<IAppxManifestPackageId>;
    fn GetProperties(&self) -> Result<IAppxManifestProperties>;
    fn GetPackageDependencies(
        &self,
    ) -> Result<IAppxManifestPackageDependenciesEnumerator>;
    fn GetCapabilities(&self) -> Result<APPX_CAPABILITIES>;
    fn GetResources(&self) -> Result<IAppxManifestResourcesEnumerator>;
    fn GetDeviceCapabilities(
        &self,
    ) -> Result<IAppxManifestDeviceCapabilitiesEnumerator>;
    fn GetPrerequisite(&self, name: &PCWSTR) -> Result<u64>;
    fn GetApplications(&self) -> Result<IAppxManifestApplicationsEnumerator>;
    fn GetStream(&self) -> Result<IStream>;
}

Required Methods§

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§