windows::Data::Xml::Dom

Trait IXmlNodeSelector_Impl

pub trait IXmlNodeSelector_Impl: IUnknownImpl {
    // Required methods
    fn SelectSingleNode(&self, xpath: &HSTRING) -> Result<IXmlNode>;
    fn SelectNodes(&self, xpath: &HSTRING) -> Result<XmlNodeList>;
    fn SelectSingleNodeNS(
        &self,
        xpath: &HSTRING,
        namespaces: Ref<'_, IInspectable>,
    ) -> Result<IXmlNode>;
    fn SelectNodesNS(
        &self,
        xpath: &HSTRING,
        namespaces: Ref<'_, IInspectable>,
    ) -> Result<XmlNodeList>;
}

Required Methods§

fn SelectSingleNode(&self, xpath: &HSTRING) -> Result<IXmlNode>

fn SelectNodes(&self, xpath: &HSTRING) -> Result<XmlNodeList>

fn SelectSingleNodeNS( &self, xpath: &HSTRING, namespaces: Ref<'_, IInspectable>, ) -> Result<IXmlNode>

fn SelectNodesNS( &self, xpath: &HSTRING, namespaces: Ref<'_, IInspectable>, ) -> Result<XmlNodeList>

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.

Implementors§