pub trait ICatalogObject_Impl: Sized + 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>

Object Safety§

This trait is not object safe.

Implementors§