pub trait IStringCollection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn get_Item(&self, index: i32) -> Result<BSTR>;
    fn put_Item(&self, index: i32, value: &BSTR) -> Result<()>;
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Count(&self) -> Result<i32>;
    fn ReadOnly(&self) -> Result<VARIANT_BOOL>;
    fn Add(&self, value: &BSTR) -> Result<i32>;
    fn Clear(&self) -> Result<()>;
    fn Copy(&self) -> Result<IStringCollection>;
    fn Insert(&self, index: i32, value: &BSTR) -> Result<()>;
    fn RemoveAt(&self, index: i32) -> Result<()>;
}

Required Methods§

fn get_Item(&self, index: i32) -> Result<BSTR>

fn put_Item(&self, index: i32, value: &BSTR) -> Result<()>

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

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

fn ReadOnly(&self) -> Result<VARIANT_BOOL>

fn Add(&self, value: &BSTR) -> Result<i32>

fn Clear(&self) -> Result<()>

fn Copy(&self) -> Result<IStringCollection>

fn Insert(&self, index: i32, value: &BSTR) -> Result<()>

fn RemoveAt(&self, index: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§