Trait IAppxPackageReader_Impl
pub trait IAppxPackageReader_Impl: IUnknownImpl {
// Required methods
fn GetBlockMap(&self) -> Result<IAppxBlockMapReader>;
fn GetFootprintFile(
&self,
type: APPX_FOOTPRINT_FILE_TYPE,
) -> Result<IAppxFile>;
fn GetPayloadFile(&self, filename: &PCWSTR) -> Result<IAppxFile>;
fn GetPayloadFiles(&self) -> Result<IAppxFilesEnumerator>;
fn GetManifest(&self) -> Result<IAppxManifestReader>;
}
Required Methods§
fn GetBlockMap(&self) -> Result<IAppxBlockMapReader>
fn GetFootprintFile(&self, type: APPX_FOOTPRINT_FILE_TYPE) -> Result<IAppxFile>
fn GetPayloadFile(&self, filename: &PCWSTR) -> Result<IAppxFile>
fn GetPayloadFiles(&self) -> Result<IAppxFilesEnumerator>
fn GetManifest(&self) -> Result<IAppxManifestReader>
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.