pub trait IOpcSignatureRelationshipReferenceSet_Impl: Sized {
// Required methods
fn Create(
&self,
sourceuri: Option<&IOpcUri>,
digestmethod: &PCWSTR,
relationshipsigningoption: OPC_RELATIONSHIPS_SIGNING_OPTION,
selectorset: Option<&IOpcRelationshipSelectorSet>,
transformmethod: OPC_CANONICALIZATION_METHOD,
) -> Result<IOpcSignatureRelationshipReference>;
fn CreateRelationshipSelectorSet(
&self,
) -> Result<IOpcRelationshipSelectorSet>;
fn Delete(
&self,
relationshipreference: Option<&IOpcSignatureRelationshipReference>,
) -> Result<()>;
fn GetEnumerator(
&self,
) -> Result<IOpcSignatureRelationshipReferenceEnumerator>;
}
Required Methods§
fn Create( &self, sourceuri: Option<&IOpcUri>, digestmethod: &PCWSTR, relationshipsigningoption: OPC_RELATIONSHIPS_SIGNING_OPTION, selectorset: Option<&IOpcRelationshipSelectorSet>, transformmethod: OPC_CANONICALIZATION_METHOD, ) -> Result<IOpcSignatureRelationshipReference>
fn CreateRelationshipSelectorSet(&self) -> Result<IOpcRelationshipSelectorSet>
fn Delete( &self, relationshipreference: Option<&IOpcSignatureRelationshipReference>, ) -> Result<()>
fn GetEnumerator(&self) -> Result<IOpcSignatureRelationshipReferenceEnumerator>
Object Safety§
This trait is not object safe.