Trait windows::Win32::Data::Xml::MsXml::IXMLDOMSchemaCollection_Impl

pub trait IXMLDOMSchemaCollection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn add(&self, namespaceuri: &BSTR, var: &VARIANT) -> Result<()>;
    fn get(&self, namespaceuri: &BSTR) -> Result<IXMLDOMNode>;
    fn remove(&self, namespaceuri: &BSTR) -> Result<()>;
    fn length(&self) -> Result<i32>;
    fn get_namespaceURI(&self, index: i32) -> Result<BSTR>;
    fn addCollection(
        &self,
        othercollection: Option<&IXMLDOMSchemaCollection>
    ) -> Result<()>;
    fn _newEnum(&self) -> Result<IUnknown>;
}

Required Methods§

fn add(&self, namespaceuri: &BSTR, var: &VARIANT) -> Result<()>

fn get(&self, namespaceuri: &BSTR) -> Result<IXMLDOMNode>

fn remove(&self, namespaceuri: &BSTR) -> Result<()>

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

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

fn addCollection( &self, othercollection: Option<&IXMLDOMSchemaCollection> ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§