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