Trait ICryptAttributes_Impl
pub trait ICryptAttributes_Impl: IDispatch_Impl {
// Required methods
fn get_ItemByIndex(&self, index: i32) -> Result<ICryptAttribute>;
fn Count(&self) -> Result<i32>;
fn _NewEnum(&self) -> Result<IUnknown>;
fn Add(&self, pval: Ref<'_, ICryptAttribute>) -> Result<()>;
fn Remove(&self, index: i32) -> Result<()>;
fn Clear(&self) -> Result<()>;
fn get_IndexByObjectId(&self, pobjectid: Ref<'_, IObjectId>) -> Result<i32>;
fn AddRange(&self, pvalue: Ref<'_, ICryptAttributes>) -> Result<()>;
}
Required Methods§
fn get_ItemByIndex(&self, index: i32) -> Result<ICryptAttribute>
fn Count(&self) -> Result<i32>
fn _NewEnum(&self) -> Result<IUnknown>
fn Add(&self, pval: Ref<'_, ICryptAttribute>) -> Result<()>
fn Remove(&self, index: i32) -> Result<()>
fn Clear(&self) -> Result<()>
fn get_IndexByObjectId(&self, pobjectid: Ref<'_, IObjectId>) -> Result<i32>
fn AddRange(&self, pvalue: Ref<'_, ICryptAttributes>) -> Result<()>
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.