Struct windows::Win32::Security::Cryptography::Certificates::IOCSPCAConfiguration
pub struct IOCSPCAConfiguration(/* private fields */);
Implementations§
§impl IOCSPCAConfiguration
impl IOCSPCAConfiguration
pub unsafe fn Identifier(&self) -> Result<BSTR>
pub unsafe fn CACertificate(&self) -> Result<VARIANT>
pub unsafe fn HashAlgorithm(&self) -> Result<BSTR>
pub unsafe fn SetHashAlgorithm<P0>(&self, newval: P0) -> Result<()>where
P0: Param<BSTR>,
pub unsafe fn SigningFlags(&self) -> Result<u32>
pub unsafe fn SetSigningFlags(&self, newval: u32) -> Result<()>
pub unsafe fn SigningCertificate(&self) -> Result<VARIANT>
pub unsafe fn SetSigningCertificate<P0>(&self, newval: P0) -> Result<()>where
P0: Param<VARIANT>,
pub unsafe fn ReminderDuration(&self) -> Result<u32>
pub unsafe fn SetReminderDuration(&self, newval: u32) -> Result<()>
pub unsafe fn ErrorCode(&self) -> Result<u32>
pub unsafe fn CSPName(&self) -> Result<BSTR>
pub unsafe fn KeySpec(&self) -> Result<u32>
pub unsafe fn ProviderCLSID(&self) -> Result<BSTR>
pub unsafe fn SetProviderCLSID<P0>(&self, newval: P0) -> Result<()>where
P0: Param<BSTR>,
pub unsafe fn ProviderProperties(&self) -> Result<VARIANT>
pub unsafe fn SetProviderProperties<P0>(&self, newval: P0) -> Result<()>where
P0: Param<VARIANT>,
pub unsafe fn Modified(&self) -> Result<VARIANT_BOOL>
pub unsafe fn LocalRevocationInformation(&self) -> Result<VARIANT>
pub unsafe fn SetLocalRevocationInformation<P0>(&self, newval: P0) -> Result<()>where
P0: Param<VARIANT>,
pub unsafe fn SigningCertificateTemplate(&self) -> Result<BSTR>
pub unsafe fn SetSigningCertificateTemplate<P0>(&self, newval: P0) -> Result<()>where
P0: Param<BSTR>,
pub unsafe fn CAConfig(&self) -> Result<BSTR>
pub unsafe fn SetCAConfig<P0>(&self, newval: P0) -> Result<()>where
P0: Param<BSTR>,
Methods from Deref<Target = IDispatch>§
pub unsafe fn GetTypeInfoCount(&self) -> Result<u32>
pub unsafe fn GetTypeInfo(&self, itinfo: u32, lcid: u32) -> Result<ITypeInfo>
pub unsafe fn GetIDsOfNames( &self, riid: *const GUID, rgsznames: *const PCWSTR, cnames: u32, lcid: u32, rgdispid: *mut i32, ) -> Result<()>
pub unsafe fn Invoke( &self, dispidmember: i32, riid: *const GUID, lcid: u32, wflags: DISPATCH_FLAGS, pdispparams: *const DISPPARAMS, pvarresult: Option<*mut VARIANT>, pexcepinfo: Option<*mut EXCEPINFO>, puargerr: Option<*mut u32>, ) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for IOCSPCAConfiguration
impl CanInto<IUnknown> for IOCSPCAConfiguration
§impl Clone for IOCSPCAConfiguration
impl Clone for IOCSPCAConfiguration
§fn clone(&self) -> IOCSPCAConfiguration
fn clone(&self) -> IOCSPCAConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IOCSPCAConfiguration
impl Debug for IOCSPCAConfiguration
§impl Deref for IOCSPCAConfiguration
impl Deref for IOCSPCAConfiguration
§impl From<&IOCSPCAConfiguration> for &IDispatch
impl From<&IOCSPCAConfiguration> for &IDispatch
§fn from(value: &IOCSPCAConfiguration) -> Self
fn from(value: &IOCSPCAConfiguration) -> Self
Converts to this type from the input type.
§impl From<&IOCSPCAConfiguration> for &IUnknown
impl From<&IOCSPCAConfiguration> for &IUnknown
§fn from(value: &IOCSPCAConfiguration) -> Self
fn from(value: &IOCSPCAConfiguration) -> Self
Converts to this type from the input type.
§impl From<IOCSPCAConfiguration> for IDispatch
impl From<IOCSPCAConfiguration> for IDispatch
§fn from(value: IOCSPCAConfiguration) -> Self
fn from(value: IOCSPCAConfiguration) -> Self
Converts to this type from the input type.
§impl From<IOCSPCAConfiguration> for IUnknown
impl From<IOCSPCAConfiguration> for IUnknown
§fn from(value: IOCSPCAConfiguration) -> Self
fn from(value: IOCSPCAConfiguration) -> Self
Converts to this type from the input type.
§impl Interface for IOCSPCAConfiguration
impl Interface for IOCSPCAConfiguration
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IOCSPCAConfiguration
impl PartialEq for IOCSPCAConfiguration
§fn eq(&self, other: &IOCSPCAConfiguration) -> bool
fn eq(&self, other: &IOCSPCAConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IOCSPCAConfiguration
impl StructuralPartialEq for IOCSPCAConfiguration
Auto Trait Implementations§
impl Freeze for IOCSPCAConfiguration
impl RefUnwindSafe for IOCSPCAConfiguration
impl !Send for IOCSPCAConfiguration
impl !Sync for IOCSPCAConfiguration
impl Unpin for IOCSPCAConfiguration
impl UnwindSafe for IOCSPCAConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)