Trait windows::Win32::Data::Xml::MsXml::ISchemaItemCollection_Impl

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

Object Safety§

This trait is not object safe.

Implementors§