Trait ICertificateEnrollmentPolicyServerSetup_Impl
pub trait ICertificateEnrollmentPolicyServerSetup_Impl: IDispatch_Impl {
// Required methods
fn ErrorString(&self) -> Result<BSTR>;
fn InitializeInstallDefaults(&self) -> Result<()>;
fn GetProperty(&self, propertyid: CEPSetupProperty) -> Result<VARIANT>;
fn SetProperty(
&self,
propertyid: CEPSetupProperty,
ppropertyvalue: *const VARIANT,
) -> Result<()>;
fn Install(&self) -> Result<()>;
fn UnInstall(&self, pauthkeybasedrenewal: *const VARIANT) -> Result<()>;
}
Required Methods§
fn ErrorString(&self) -> Result<BSTR>
fn InitializeInstallDefaults(&self) -> Result<()>
fn GetProperty(&self, propertyid: CEPSetupProperty) -> Result<VARIANT>
fn SetProperty( &self, propertyid: CEPSetupProperty, ppropertyvalue: *const VARIANT, ) -> Result<()>
fn Install(&self) -> Result<()>
fn UnInstall(&self, pauthkeybasedrenewal: *const VARIANT) -> Result<()>
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.