pub trait IOpcSignatureCustomObjectSet_Impl: Sized {
    // Required methods
    fn Create(
        &self,
        xmlmarkup: *const u8,
        count: u32,
    ) -> Result<IOpcSignatureCustomObject>;
    fn Delete(
        &self,
        customobject: Option<&IOpcSignatureCustomObject>,
    ) -> Result<()>;
    fn GetEnumerator(&self) -> Result<IOpcSignatureCustomObjectEnumerator>;
}

Required Methods§

fn Create( &self, xmlmarkup: *const u8, count: u32, ) -> Result<IOpcSignatureCustomObject>

fn Delete(&self, customobject: Option<&IOpcSignatureCustomObject>) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§