Trait IVBMXNamespaceManager_Impl
pub trait IVBMXNamespaceManager_Impl: IDispatch_Impl {
// Required methods
fn SetallowOverride(&self, foverride: VARIANT_BOOL) -> Result<()>;
fn allowOverride(&self) -> Result<VARIANT_BOOL>;
fn reset(&self) -> Result<()>;
fn pushContext(&self) -> Result<()>;
fn pushNodeContext(
&self,
contextnode: Ref<'_, IXMLDOMNode>,
fdeep: VARIANT_BOOL,
) -> Result<()>;
fn popContext(&self) -> Result<()>;
fn declarePrefix(&self, prefix: &BSTR, namespaceuri: &BSTR) -> Result<()>;
fn getDeclaredPrefixes(&self) -> Result<IMXNamespacePrefixes>;
fn getPrefixes(&self, namespaceuri: &BSTR) -> Result<IMXNamespacePrefixes>;
fn getURI(&self, prefix: &BSTR) -> Result<VARIANT>;
fn getURIFromNode(
&self,
strprefix: &BSTR,
contextnode: Ref<'_, IXMLDOMNode>,
) -> Result<VARIANT>;
}
Required Methods§
fn SetallowOverride(&self, foverride: VARIANT_BOOL) -> Result<()>
fn allowOverride(&self) -> Result<VARIANT_BOOL>
fn reset(&self) -> Result<()>
fn pushContext(&self) -> Result<()>
fn pushNodeContext( &self, contextnode: Ref<'_, IXMLDOMNode>, fdeep: VARIANT_BOOL, ) -> Result<()>
fn popContext(&self) -> Result<()>
fn declarePrefix(&self, prefix: &BSTR, namespaceuri: &BSTR) -> Result<()>
fn getDeclaredPrefixes(&self) -> Result<IMXNamespacePrefixes>
fn getPrefixes(&self, namespaceuri: &BSTR) -> Result<IMXNamespacePrefixes>
fn getURI(&self, prefix: &BSTR) -> Result<VARIANT>
fn getURIFromNode( &self, strprefix: &BSTR, contextnode: Ref<'_, IXMLDOMNode>, ) -> Result<VARIANT>
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.