pub trait ICertEncodeStringArray_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Decode(&self, strbinary: &BSTR) -> Result<()>;
    fn GetStringType(&self) -> Result<i32>;
    fn GetCount(&self) -> Result<i32>;
    fn GetValue(&self, index: i32) -> Result<BSTR>;
    fn Reset(
        &self,
        count: i32,
        stringtype: CERT_RDN_ATTR_VALUE_TYPE,
    ) -> Result<()>;
    fn SetValue(&self, index: i32, str: &BSTR) -> Result<()>;
    fn Encode(&self) -> Result<BSTR>;
}

Required Methods§

fn Decode(&self, strbinary: &BSTR) -> Result<()>

fn GetStringType(&self) -> Result<i32>

fn GetCount(&self) -> Result<i32>

fn GetValue(&self, index: i32) -> Result<BSTR>

fn Reset(&self, count: i32, stringtype: CERT_RDN_ATTR_VALUE_TYPE) -> Result<()>

fn SetValue(&self, index: i32, str: &BSTR) -> Result<()>

fn Encode(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§