pub trait IAppxEncryptedPackageWriter_Impl: Sized {
    // Required methods
    fn AddPayloadFileEncrypted(
        &self,
        filename: &PCWSTR,
        compressionoption: APPX_COMPRESSION_OPTION,
        inputstream: Option<&IStream>,
    ) -> Result<()>;
    fn Close(&self) -> Result<()>;
}

Required Methods§

fn AddPayloadFileEncrypted( &self, filename: &PCWSTR, compressionoption: APPX_COMPRESSION_OPTION, inputstream: Option<&IStream>, ) -> Result<()>

fn Close(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§