Trait IInkExtendedProperties_Impl
pub trait IInkExtendedProperties_Impl: IDispatch_Impl {
// Required methods
fn Count(&self) -> Result<i32>;
fn _NewEnum(&self) -> Result<IUnknown>;
fn Item(&self, identifier: &VARIANT) -> Result<IInkExtendedProperty>;
fn Add(&self, guid: &BSTR, data: &VARIANT) -> Result<IInkExtendedProperty>;
fn Remove(&self, identifier: &VARIANT) -> Result<()>;
fn Clear(&self) -> Result<()>;
fn DoesPropertyExist(&self, guid: &BSTR) -> Result<VARIANT_BOOL>;
}
Required Methods§
fn Count(&self) -> Result<i32>
fn _NewEnum(&self) -> Result<IUnknown>
fn Item(&self, identifier: &VARIANT) -> Result<IInkExtendedProperty>
fn Add(&self, guid: &BSTR, data: &VARIANT) -> Result<IInkExtendedProperty>
fn Remove(&self, identifier: &VARIANT) -> Result<()>
fn Clear(&self) -> Result<()>
fn DoesPropertyExist(&self, guid: &BSTR) -> Result<VARIANT_BOOL>
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.