Trait IX509AttributeCspProvider_Impl
pub trait IX509AttributeCspProvider_Impl: IX509Attribute_Impl {
// Required methods
fn InitializeEncode(
&self,
keyspec: X509KeySpec,
strprovidername: &BSTR,
encoding: EncodingType,
strsignature: &BSTR,
) -> Result<()>;
fn InitializeDecode(
&self,
encoding: EncodingType,
strencodeddata: &BSTR,
) -> Result<()>;
fn KeySpec(&self) -> Result<X509KeySpec>;
fn ProviderName(&self) -> Result<BSTR>;
fn get_Signature(&self, encoding: EncodingType) -> Result<BSTR>;
}
Required Methods§
fn InitializeEncode( &self, keyspec: X509KeySpec, strprovidername: &BSTR, encoding: EncodingType, strsignature: &BSTR, ) -> Result<()>
fn InitializeDecode( &self, encoding: EncodingType, strencodeddata: &BSTR, ) -> Result<()>
fn KeySpec(&self) -> Result<X509KeySpec>
fn ProviderName(&self) -> Result<BSTR>
fn get_Signature(&self, encoding: EncodingType) -> 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.