Trait IOpcRelationshipSelectorSet_Impl
pub trait IOpcRelationshipSelectorSet_Impl: IUnknownImpl {
// Required methods
fn Create(
&self,
selector: OPC_RELATIONSHIP_SELECTOR,
selectioncriterion: &PCWSTR,
) -> Result<IOpcRelationshipSelector>;
fn Delete(
&self,
relationshipselector: Ref<'_, IOpcRelationshipSelector>,
) -> Result<()>;
fn GetEnumerator(&self) -> Result<IOpcRelationshipSelectorEnumerator>;
}
Required Methods§
fn Create( &self, selector: OPC_RELATIONSHIP_SELECTOR, selectioncriterion: &PCWSTR, ) -> Result<IOpcRelationshipSelector>
fn Delete( &self, relationshipselector: Ref<'_, IOpcRelationshipSelector>, ) -> Result<()>
fn GetEnumerator(&self) -> Result<IOpcRelationshipSelectorEnumerator>
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.