Trait IOCSPPropertyCollection_Impl
pub trait IOCSPPropertyCollection_Impl: IDispatch_Impl {
// Required methods
fn _NewEnum(&self) -> Result<IUnknown>;
fn get_Item(&self, index: i32) -> Result<VARIANT>;
fn Count(&self) -> Result<i32>;
fn get_ItemByName(&self, bstrpropname: &BSTR) -> Result<VARIANT>;
fn CreateProperty(
&self,
bstrpropname: &BSTR,
pvarpropvalue: *const VARIANT,
) -> Result<IOCSPProperty>;
fn DeleteProperty(&self, bstrpropname: &BSTR) -> Result<()>;
fn InitializeFromProperties(
&self,
pvarproperties: *const VARIANT,
) -> Result<()>;
fn GetAllProperties(&self) -> Result<VARIANT>;
}
Required Methods§
fn _NewEnum(&self) -> Result<IUnknown>
fn get_Item(&self, index: i32) -> Result<VARIANT>
fn Count(&self) -> Result<i32>
fn get_ItemByName(&self, bstrpropname: &BSTR) -> Result<VARIANT>
fn CreateProperty( &self, bstrpropname: &BSTR, pvarpropvalue: *const VARIANT, ) -> Result<IOCSPProperty>
fn DeleteProperty(&self, bstrpropname: &BSTR) -> Result<()>
fn InitializeFromProperties(&self, pvarproperties: *const VARIANT) -> Result<()>
fn GetAllProperties(&self) -> Result<VARIANT>
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.