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

Trait IAppxFactory3_Impl

pub trait IAppxFactory3_Impl: IUnknownImpl {
    // Required methods
    fn CreatePackageReader2(
        &self,
        inputstream: Ref<'_, IStream>,
        expecteddigest: &PCWSTR,
    ) -> Result<IAppxPackageReader>;
    fn CreateManifestReader2(
        &self,
        inputstream: Ref<'_, IStream>,
        expecteddigest: &PCWSTR,
    ) -> Result<IAppxManifestReader>;
    fn CreateAppInstallerReader(
        &self,
        inputstream: Ref<'_, IStream>,
        expecteddigest: &PCWSTR,
    ) -> Result<IAppxAppInstallerReader>;
}

Required Methods§

fn CreatePackageReader2( &self, inputstream: Ref<'_, IStream>, expecteddigest: &PCWSTR, ) -> Result<IAppxPackageReader>

fn CreateManifestReader2( &self, inputstream: Ref<'_, IStream>, expecteddigest: &PCWSTR, ) -> Result<IAppxManifestReader>

fn CreateAppInstallerReader( &self, inputstream: Ref<'_, IStream>, expecteddigest: &PCWSTR, ) -> Result<IAppxAppInstallerReader>

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§