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

Trait ICryptAttribute_Impl

pub trait ICryptAttribute_Impl: IDispatch_Impl {
    // Required methods
    fn InitializeFromObjectId(
        &self,
        pobjectid: Ref<'_, IObjectId>,
    ) -> Result<()>;
    fn InitializeFromValues(
        &self,
        pattributes: Ref<'_, IX509Attributes>,
    ) -> Result<()>;
    fn ObjectId(&self) -> Result<IObjectId>;
    fn Values(&self) -> Result<IX509Attributes>;
}

Required Methods§

fn InitializeFromObjectId(&self, pobjectid: Ref<'_, IObjectId>) -> Result<()>

fn InitializeFromValues( &self, pattributes: Ref<'_, IX509Attributes>, ) -> Result<()>

fn ObjectId(&self) -> Result<IObjectId>

fn Values(&self) -> Result<IX509Attributes>

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§