pub trait IOpcRelationshipSelectorSet_Impl: Sized {
    // Required methods
    fn Create(
        &self,
        selector: OPC_RELATIONSHIP_SELECTOR,
        selectioncriterion: &PCWSTR,
    ) -> Result<IOpcRelationshipSelector>;
    fn Delete(
        &self,
        relationshipselector: Option<&IOpcRelationshipSelector>,
    ) -> Result<()>;
    fn GetEnumerator(&self) -> Result<IOpcRelationshipSelectorEnumerator>;
}

Required Methods§

fn Create( &self, selector: OPC_RELATIONSHIP_SELECTOR, selectioncriterion: &PCWSTR, ) -> Result<IOpcRelationshipSelector>

fn Delete( &self, relationshipselector: Option<&IOpcRelationshipSelector>, ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§