pub trait ICertEncodeCRLDistInfo_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Decode(&self, strbinary: &BSTR) -> Result<()>;
    fn GetDistPointCount(&self) -> Result<i32>;
    fn GetNameCount(&self, distpointindex: i32) -> Result<i32>;
    fn GetNameChoice(&self, distpointindex: i32, nameindex: i32) -> Result<i32>;
    fn GetName(&self, distpointindex: i32, nameindex: i32) -> Result<BSTR>;
    fn Reset(&self, distpointcount: i32) -> Result<()>;
    fn SetNameCount(&self, distpointindex: i32, namecount: i32) -> Result<()>;
    fn SetNameEntry(
        &self,
        distpointindex: i32,
        nameindex: i32,
        namechoice: CERT_ALT_NAME,
        strname: &BSTR,
    ) -> Result<()>;
    fn Encode(&self) -> Result<BSTR>;
}

Required Methods§

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

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

fn GetNameCount(&self, distpointindex: i32) -> Result<i32>

fn GetNameChoice(&self, distpointindex: i32, nameindex: i32) -> Result<i32>

fn GetName(&self, distpointindex: i32, nameindex: i32) -> Result<BSTR>

fn Reset(&self, distpointcount: i32) -> Result<()>

fn SetNameCount(&self, distpointindex: i32, namecount: i32) -> Result<()>

fn SetNameEntry( &self, distpointindex: i32, nameindex: i32, namechoice: CERT_ALT_NAME, strname: &BSTR, ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§