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

Trait IOpcSignatureRelationshipReferenceSet_Impl

pub trait IOpcSignatureRelationshipReferenceSet_Impl: IUnknownImpl {
    // Required methods
    fn Create(
        &self,
        sourceuri: Ref<'_, IOpcUri>,
        digestmethod: &PCWSTR,
        relationshipsigningoption: OPC_RELATIONSHIPS_SIGNING_OPTION,
        selectorset: Ref<'_, IOpcRelationshipSelectorSet>,
        transformmethod: OPC_CANONICALIZATION_METHOD,
    ) -> Result<IOpcSignatureRelationshipReference>;
    fn CreateRelationshipSelectorSet(
        &self,
    ) -> Result<IOpcRelationshipSelectorSet>;
    fn Delete(
        &self,
        relationshipreference: Ref<'_, IOpcSignatureRelationshipReference>,
    ) -> Result<()>;
    fn GetEnumerator(
        &self,
    ) -> Result<IOpcSignatureRelationshipReferenceEnumerator>;
}

Required Methods§

fn Create( &self, sourceuri: Ref<'_, IOpcUri>, digestmethod: &PCWSTR, relationshipsigningoption: OPC_RELATIONSHIPS_SIGNING_OPTION, selectorset: Ref<'_, IOpcRelationshipSelectorSet>, transformmethod: OPC_CANONICALIZATION_METHOD, ) -> Result<IOpcSignatureRelationshipReference>

fn CreateRelationshipSelectorSet(&self) -> Result<IOpcRelationshipSelectorSet>

fn Delete( &self, relationshipreference: Ref<'_, IOpcSignatureRelationshipReference>, ) -> Result<()>

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

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§