Trait ICertEncodeBitString_Impl
pub trait ICertEncodeBitString_Impl: IDispatch_Impl {
// Required methods
fn Decode(&self, strbinary: &BSTR) -> Result<()>;
fn GetBitCount(&self) -> Result<i32>;
fn GetBitString(&self) -> Result<BSTR>;
fn Encode(&self, bitcount: i32, strbitstring: &BSTR) -> Result<BSTR>;
}
Required Methods§
fn Decode(&self, strbinary: &BSTR) -> Result<()>
fn GetBitCount(&self) -> Result<i32>
fn GetBitString(&self) -> Result<BSTR>
fn Encode(&self, bitcount: i32, strbitstring: &BSTR) -> 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.