pub trait IOpcRelationship_Impl: Sized {
    // Required methods
    fn GetId(&self) -> Result<PWSTR>;
    fn GetRelationshipType(&self) -> Result<PWSTR>;
    fn GetSourceUri(&self) -> Result<IOpcUri>;
    fn GetTargetUri(&self) -> Result<IUri>;
    fn GetTargetMode(&self) -> Result<OPC_URI_TARGET_MODE>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§