Trait IX509CertificateRequestCertificate2_Impl
pub trait IX509CertificateRequestCertificate2_Impl: IX509CertificateRequestCertificate_Impl {
// Required methods
fn InitializeFromTemplate(
&self,
context: X509CertificateEnrollmentContext,
ppolicyserver: Ref<'_, IX509EnrollmentPolicyServer>,
ptemplate: Ref<'_, IX509CertificateTemplate>,
) -> Result<()>;
fn InitializeFromPrivateKeyTemplate(
&self,
context: X509CertificateEnrollmentContext,
pprivatekey: Ref<'_, IX509PrivateKey>,
ppolicyserver: Ref<'_, IX509EnrollmentPolicyServer>,
ptemplate: Ref<'_, IX509CertificateTemplate>,
) -> Result<()>;
fn PolicyServer(&self) -> Result<IX509EnrollmentPolicyServer>;
fn Template(&self) -> Result<IX509CertificateTemplate>;
}
Required Methods§
fn InitializeFromTemplate( &self, context: X509CertificateEnrollmentContext, ppolicyserver: Ref<'_, IX509EnrollmentPolicyServer>, ptemplate: Ref<'_, IX509CertificateTemplate>, ) -> Result<()>
fn InitializeFromPrivateKeyTemplate( &self, context: X509CertificateEnrollmentContext, pprivatekey: Ref<'_, IX509PrivateKey>, ppolicyserver: Ref<'_, IX509EnrollmentPolicyServer>, ptemplate: Ref<'_, IX509CertificateTemplate>, ) -> Result<()>
fn PolicyServer(&self) -> Result<IX509EnrollmentPolicyServer>
fn Template(&self) -> Result<IX509CertificateTemplate>
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.