Trait IAppxFile_Impl
pub trait IAppxFile_Impl: IUnknownImpl {
// Required methods
fn GetCompressionOption(&self) -> Result<APPX_COMPRESSION_OPTION>;
fn GetContentType(&self) -> Result<PWSTR>;
fn GetName(&self) -> Result<PWSTR>;
fn GetSize(&self) -> Result<u64>;
fn GetStream(&self) -> Result<IStream>;
}
Required Methods§
fn GetCompressionOption(&self) -> Result<APPX_COMPRESSION_OPTION>
fn GetContentType(&self) -> Result<PWSTR>
fn GetName(&self) -> Result<PWSTR>
fn GetSize(&self) -> Result<u64>
fn GetStream(&self) -> Result<IStream>
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.