Trait IStringCollection_Impl
pub trait IStringCollection_Impl: 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<()>
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.