pub trait IOpcCertificateSet_Impl: Sized {
    // Required methods
    fn Add(&self, certificate: *const CERT_CONTEXT) -> Result<()>;
    fn Remove(&self, certificate: *const CERT_CONTEXT) -> Result<()>;
    fn GetEnumerator(&self) -> Result<IOpcCertificateEnumerator>;
}

Required Methods§

fn Add(&self, certificate: *const CERT_CONTEXT) -> Result<()>

fn Remove(&self, certificate: *const CERT_CONTEXT) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§