pub trait IAppxEncryptionFactory2_Impl: Sized {
    // Required method
    fn CreateEncryptedPackageWriter(
        &self,
        outputstream: Option<&IStream>,
        manifeststream: Option<&IStream>,
        contentgroupmapstream: Option<&IStream>,
        settings: *const APPX_ENCRYPTED_PACKAGE_SETTINGS,
        keyinfo: *const APPX_KEY_INFO,
        exemptedfiles: *const APPX_ENCRYPTED_EXEMPTIONS,
    ) -> Result<IAppxEncryptedPackageWriter>;
}

Required Methods§

fn CreateEncryptedPackageWriter( &self, outputstream: Option<&IStream>, manifeststream: Option<&IStream>, contentgroupmapstream: Option<&IStream>, settings: *const APPX_ENCRYPTED_PACKAGE_SETTINGS, keyinfo: *const APPX_KEY_INFO, exemptedfiles: *const APPX_ENCRYPTED_EXEMPTIONS, ) -> Result<IAppxEncryptedPackageWriter>

Object Safety§

This trait is not object safe.

Implementors§