windows::Win32::Security::Cryptography::Certificates

Trait ICertEncodeLongArray_Impl

pub trait ICertEncodeLongArray_Impl: IDispatch_Impl {
    // Required methods
    fn Decode(&self, strbinary: &BSTR) -> Result<()>;
    fn GetCount(&self) -> Result<i32>;
    fn GetValue(&self, index: i32) -> Result<i32>;
    fn Reset(&self, count: i32) -> Result<()>;
    fn SetValue(&self, index: i32, value: i32) -> Result<()>;
    fn Encode(&self) -> Result<BSTR>;
}

Required Methods§

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

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

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

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

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

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§