windows::Win32::Security::Cryptography::Certificates

Trait ICspStatuses_Impl

pub trait ICspStatuses_Impl: IDispatch_Impl {
    // Required methods
    fn get_ItemByIndex(&self, index: i32) -> Result<ICspStatus>;
    fn Count(&self) -> Result<i32>;
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Add(&self, pval: Ref<'_, ICspStatus>) -> Result<()>;
    fn Remove(&self, index: i32) -> Result<()>;
    fn Clear(&self) -> Result<()>;
    fn get_ItemByName(
        &self,
        strcspname: &BSTR,
        stralgorithmname: &BSTR,
    ) -> Result<ICspStatus>;
    fn get_ItemByOrdinal(&self, ordinal: i32) -> Result<ICspStatus>;
    fn get_ItemByOperations(
        &self,
        strcspname: &BSTR,
        stralgorithmname: &BSTR,
        operations: AlgorithmOperationFlags,
    ) -> Result<ICspStatus>;
    fn get_ItemByProvider(
        &self,
        pcspstatus: Ref<'_, ICspStatus>,
    ) -> Result<ICspStatus>;
}

Required Methods§

fn get_ItemByIndex(&self, index: i32) -> Result<ICspStatus>

fn Count(&self) -> Result<i32>

fn _NewEnum(&self) -> Result<IUnknown>

fn Add(&self, pval: Ref<'_, ICspStatus>) -> Result<()>

fn Remove(&self, index: i32) -> Result<()>

fn Clear(&self) -> Result<()>

fn get_ItemByName( &self, strcspname: &BSTR, stralgorithmname: &BSTR, ) -> Result<ICspStatus>

fn get_ItemByOrdinal(&self, ordinal: i32) -> Result<ICspStatus>

fn get_ItemByOperations( &self, strcspname: &BSTR, stralgorithmname: &BSTR, operations: AlgorithmOperationFlags, ) -> Result<ICspStatus>

fn get_ItemByProvider( &self, pcspstatus: Ref<'_, ICspStatus>, ) -> Result<ICspStatus>

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.

Implementors§