Trait ICatalogObject_Impl
pub trait ICatalogObject_Impl: IDispatch_Impl {
// Required methods
fn get_Value(&self, bstrpropname: &BSTR) -> Result<VARIANT>;
fn put_Value(&self, bstrpropname: &BSTR, val: &VARIANT) -> Result<()>;
fn Key(&self) -> Result<VARIANT>;
fn Name(&self) -> Result<VARIANT>;
fn IsPropertyReadOnly(&self, bstrpropname: &BSTR) -> Result<VARIANT_BOOL>;
fn Valid(&self) -> Result<VARIANT_BOOL>;
fn IsPropertyWriteOnly(&self, bstrpropname: &BSTR) -> Result<VARIANT_BOOL>;
}
Required Methods§
fn get_Value(&self, bstrpropname: &BSTR) -> Result<VARIANT>
fn put_Value(&self, bstrpropname: &BSTR, val: &VARIANT) -> Result<()>
fn Key(&self) -> Result<VARIANT>
fn Name(&self) -> Result<VARIANT>
fn IsPropertyReadOnly(&self, bstrpropname: &BSTR) -> Result<VARIANT_BOOL>
fn Valid(&self) -> Result<VARIANT_BOOL>
fn IsPropertyWriteOnly(&self, bstrpropname: &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.