pub trait ICspStatus_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Initialize(
        &self,
        pcsp: Option<&ICspInformation>,
        palgorithm: Option<&ICspAlgorithm>,
    ) -> Result<()>;
    fn Ordinal(&self) -> Result<i32>;
    fn SetOrdinal(&self, value: i32) -> Result<()>;
    fn CspAlgorithm(&self) -> Result<ICspAlgorithm>;
    fn CspInformation(&self) -> Result<ICspInformation>;
    fn EnrollmentStatus(&self) -> Result<IX509EnrollmentStatus>;
    fn DisplayName(&self) -> Result<BSTR>;
}

Required Methods§

fn Initialize( &self, pcsp: Option<&ICspInformation>, palgorithm: Option<&ICspAlgorithm>, ) -> Result<()>

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

fn SetOrdinal(&self, value: i32) -> Result<()>

fn CspAlgorithm(&self) -> Result<ICspAlgorithm>

fn CspInformation(&self) -> Result<ICspInformation>

fn EnrollmentStatus(&self) -> Result<IX509EnrollmentStatus>

fn DisplayName(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§