pub trait ICertEncodeLongArray_Impl: Sized + 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>
Object Safety§
This trait is not object safe.