pub trait IEventProperty_Impl: Sized + IDispatch_Impl {
// Required methods
fn Name(&self) -> Result<BSTR>;
fn SetName(&self, propertyname: &BSTR) -> Result<()>;
fn Value(&self) -> Result<VARIANT>;
fn SetValue(&self, propertyvalue: *const VARIANT) -> Result<()>;
}
Required Methods§
fn Name(&self) -> Result<BSTR>
fn SetName(&self, propertyname: &BSTR) -> Result<()>
fn Value(&self) -> Result<VARIANT>
fn SetValue(&self, propertyvalue: *const VARIANT) -> Result<()>
Object Safety§
This trait is not object safe.