pub trait IAppxPackageWriter_Impl: Sized {
// Required methods
fn AddPayloadFile(
&self,
filename: &PCWSTR,
contenttype: &PCWSTR,
compressionoption: APPX_COMPRESSION_OPTION,
inputstream: Option<&IStream>,
) -> Result<()>;
fn Close(&self, manifest: Option<&IStream>) -> Result<()>;
}
Required Methods§
fn AddPayloadFile( &self, filename: &PCWSTR, contenttype: &PCWSTR, compressionoption: APPX_COMPRESSION_OPTION, inputstream: Option<&IStream>, ) -> Result<()>
fn Close(&self, manifest: Option<&IStream>) -> Result<()>
Object Safety§
This trait is not object safe.