windows::Win32::Storage::Packaging::Opc

Trait IOpcSignaturePartReference_Impl

pub trait IOpcSignaturePartReference_Impl: IUnknownImpl {
    // Required methods
    fn GetPartName(&self) -> Result<IOpcPartUri>;
    fn GetContentType(&self) -> Result<PWSTR>;
    fn GetDigestMethod(&self) -> Result<PWSTR>;
    fn GetDigestValue(
        &self,
        digestvalue: *mut *mut u8,
        count: *mut u32,
    ) -> Result<()>;
    fn GetTransformMethod(&self) -> Result<OPC_CANONICALIZATION_METHOD>;
}

Required Methods§

fn GetPartName(&self) -> Result<IOpcPartUri>

fn GetContentType(&self) -> Result<PWSTR>

fn GetDigestMethod(&self) -> Result<PWSTR>

fn GetDigestValue( &self, digestvalue: *mut *mut u8, count: *mut u32, ) -> Result<()>

fn GetTransformMethod(&self) -> Result<OPC_CANONICALIZATION_METHOD>

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.

Implementors§