Trait ISchemaItemCollection_Impl
pub trait ISchemaItemCollection_Impl: IDispatch_Impl {
// Required methods
fn get_item(&self, index: i32) -> Result<ISchemaItem>;
fn itemByName(&self, name: &BSTR) -> Result<ISchemaItem>;
fn itemByQName(
&self,
name: &BSTR,
namespaceuri: &BSTR,
) -> Result<ISchemaItem>;
fn length(&self) -> Result<i32>;
fn _newEnum(&self) -> Result<IUnknown>;
}
Required Methods§
fn get_item(&self, index: i32) -> Result<ISchemaItem>
fn itemByName(&self, name: &BSTR) -> Result<ISchemaItem>
fn itemByQName(&self, name: &BSTR, namespaceuri: &BSTR) -> Result<ISchemaItem>
fn length(&self) -> Result<i32>
fn _newEnum(&self) -> Result<IUnknown>
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.