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

Trait IOpcSignaturePartReferenceSet_Impl

pub trait IOpcSignaturePartReferenceSet_Impl: IUnknownImpl {
    // Required methods
    fn Create(
        &self,
        parturi: Ref<'_, IOpcPartUri>,
        digestmethod: &PCWSTR,
        transformmethod: OPC_CANONICALIZATION_METHOD,
    ) -> Result<IOpcSignaturePartReference>;
    fn Delete(
        &self,
        partreference: Ref<'_, IOpcSignaturePartReference>,
    ) -> Result<()>;
    fn GetEnumerator(&self) -> Result<IOpcSignaturePartReferenceEnumerator>;
}

Required Methods§

fn Create( &self, parturi: Ref<'_, IOpcPartUri>, digestmethod: &PCWSTR, transformmethod: OPC_CANONICALIZATION_METHOD, ) -> Result<IOpcSignaturePartReference>

fn Delete( &self, partreference: Ref<'_, IOpcSignaturePartReference>, ) -> Result<()>

fn GetEnumerator(&self) -> Result<IOpcSignaturePartReferenceEnumerator>

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§