pub trait IXmlNodeSelector_Impl: Sized {
    // Required methods
    fn SelectSingleNode(&self, xpath: &HSTRING) -> Result<IXmlNode>;
    fn SelectNodes(&self, xpath: &HSTRING) -> Result<XmlNodeList>;
    fn SelectSingleNodeNS(
        &self,
        xpath: &HSTRING,
        namespaces: Option<&IInspectable>
    ) -> Result<IXmlNode>;
    fn SelectNodesNS(
        &self,
        xpath: &HSTRING,
        namespaces: Option<&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: Option<&IInspectable> ) -> Result<IXmlNode>

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

Object Safety§

This trait is not object safe.

Implementors§