pub trait Properties_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Item(&self, name: &BSTR) -> Result<Property>;
    fn Count(&self) -> Result<i32>;
    fn Remove(&self, name: &BSTR) -> Result<()>;
}

Required Methods§

fn _NewEnum(&self) -> Result<IUnknown>

fn Item(&self, name: &BSTR) -> Result<Property>

fn Count(&self) -> Result<i32>

fn Remove(&self, name: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§