Trait IXMLDOMSchemaCollection_Impl
pub trait IXMLDOMSchemaCollection_Impl: 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: Ref<'_, 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: Ref<'_, IXMLDOMSchemaCollection>, ) -> Result<()>
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.