#[repr(C)]
pub struct ICspInformation_Vtbl {
Show 18 fields pub base__: IDispatch_Vtbl, pub InitializeFromName: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT, pub InitializeFromType: unsafe extern "system" fn(_: *mut c_void, _: X509ProviderType, _: *mut c_void, _: VARIANT_BOOL) -> HRESULT, pub CspAlgorithms: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub HasHardwareRandomNumberGenerator: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub IsHardwareDevice: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub IsRemovable: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub IsSoftwareDevice: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub Valid: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub MaxKeyContainerNameLength: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT, pub Name: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub Type: unsafe extern "system" fn(_: *mut c_void, _: *mut X509ProviderType) -> HRESULT, pub Version: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT, pub KeySpec: unsafe extern "system" fn(_: *mut c_void, _: *mut X509KeySpec) -> HRESULT, pub IsSmartCard: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub GetDefaultSecurityDescriptor: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub LegacyCsp: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub GetCspStatusFromOperations: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: AlgorithmOperationFlags, _: *mut *mut c_void) -> HRESULT,
}

Fields§

§base__: IDispatch_Vtbl§InitializeFromName: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT§InitializeFromType: unsafe extern "system" fn(_: *mut c_void, _: X509ProviderType, _: *mut c_void, _: VARIANT_BOOL) -> HRESULT§CspAlgorithms: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§HasHardwareRandomNumberGenerator: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§IsHardwareDevice: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§IsRemovable: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§IsSoftwareDevice: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§Valid: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§MaxKeyContainerNameLength: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT§Name: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§Type: unsafe extern "system" fn(_: *mut c_void, _: *mut X509ProviderType) -> HRESULT§Version: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT§KeySpec: unsafe extern "system" fn(_: *mut c_void, _: *mut X509KeySpec) -> HRESULT§IsSmartCard: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§GetDefaultSecurityDescriptor: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL, _: *mut MaybeUninit<BSTR>) -> HRESULT§LegacyCsp: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§GetCspStatusFromOperations: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: AlgorithmOperationFlags, _: *mut *mut c_void) -> HRESULT

Implementations§

§

impl ICspInformation_Vtbl

pub const fn new<Identity, const OFFSET: isize>() -> ICspInformation_Vtbl
where Identity: ICspInformation_Impl + IUnknownImpl,

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.